diff options
author | Richard Trieu <rtrieu@google.com> | 2011-09-21 03:09:09 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2011-09-21 03:09:09 +0000 |
commit | a318b8dce6f37ee22339646726f7b03cb40b2282 (patch) | |
tree | c836b420ea8aed824806835e1a88cc4534232c4c /llvm/lib/Target/CppBackend/CPPBackend.cpp | |
parent | 3d673cc3234568339bf3455e865427d9dab0cf00 (diff) | |
download | bcm5719-llvm-a318b8dce6f37ee22339646726f7b03cb40b2282.tar.gz bcm5719-llvm-a318b8dce6f37ee22339646726f7b03cb40b2282.zip |
Change:
assert(!"error message");
To:
assert(0 && "error message");
which is more consistant across the code base.
llvm-svn: 140234
Diffstat (limited to 'llvm/lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index 27e9405190a..8d6eda12046 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -1298,7 +1298,7 @@ void CppWriter::printInstruction(const Instruction *I, case Instruction::PtrToInt: Out << "PtrToIntInst"; break; case Instruction::IntToPtr: Out << "IntToPtrInst"; break; case Instruction::BitCast: Out << "BitCastInst"; break; - default: assert(!"Unreachable"); break; + default: assert(0 && "Unreachable"); break; } Out << "(" << opNames[0] << ", " << getCppName(cst->getType()) << ", \""; |