[cfe-commits] r85125 - /cfe/trunk/lib/CodeGen/CodeGenModule.cpp
Douglas Gregor
dgregor at apple.com
Mon Oct 26 09:27:59 PDT 2009
Author: dgregor
Date: Mon Oct 26 11:27:58 2009
New Revision: 85125
URL: http://llvm.org/viewvc/llvm-project?rev=85125&view=rev
Log:
assert -> llvm_unreachable
Modified:
cfe/trunk/lib/CodeGen/CodeGenModule.cpp
Modified: cfe/trunk/lib/CodeGen/CodeGenModule.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenModule.cpp?rev=85125&r1=85124&r2=85125&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenModule.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenModule.cpp Mon Oct 26 11:27:58 2009
@@ -949,7 +949,7 @@
return CodeGenModule::GVA_StrongExternal;
case TSK_ExplicitInstantiationDeclaration:
- assert(false && "Variable should not be instantiated");
+ llvm::llvm_unreachable("Variable should not be instantiated");
// Fall through to treat this like any other instantiation.
case TSK_ImplicitInstantiation:
More information about the cfe-commits
mailing list