Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave

no extra safety anyway.

llvm-svn: 91207
This commit is contained in:
Jeffrey Yasskin
2009-12-12 05:05:38 +00:00
parent 7f1c9c2ff6
commit 1615d45daa
22 changed files with 44 additions and 44 deletions

View File

@@ -891,7 +891,7 @@ GetLinkageForVariable(ASTContext &Context, const VarDecl *VD) {
return CodeGenModule::GVA_StrongExternal;
case TSK_ExplicitInstantiationDeclaration:
llvm::llvm_unreachable("Variable should not be instantiated");
llvm_unreachable("Variable should not be instantiated");
// Fall through to treat this like any other instantiation.
case TSK_ImplicitInstantiation: