diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-07-11 13:10:19 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-07-11 13:10:19 +0000 |
commit | ccb29cd29025570f4a09f964d2b409de29a8149c (patch) | |
tree | dd5f16aa075b72c23730f876aed0c4b7f53da426 /llvm/lib/Analysis/InstCount.cpp | |
parent | 20adc670b20e5f2b4cc5413e9f20287440ad41c2 (diff) | |
download | bcm5719-llvm-ccb29cd29025570f4a09f964d2b409de29a8149c.tar.gz bcm5719-llvm-ccb29cd29025570f4a09f964d2b409de29a8149c.zip |
Convert more assert(0)+abort() -> LLVM_UNREACHABLE,
and abort()/exit() -> llvm_report_error().
llvm-svn: 75363
Diffstat (limited to 'llvm/lib/Analysis/InstCount.cpp')
-rw-r--r-- | llvm/lib/Analysis/InstCount.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/InstCount.cpp b/llvm/lib/Analysis/InstCount.cpp index 2b34ad3b070..2dbf0d4f9ed 100644 --- a/llvm/lib/Analysis/InstCount.cpp +++ b/llvm/lib/Analysis/InstCount.cpp @@ -16,6 +16,7 @@ #include "llvm/Pass.h" #include "llvm/Function.h" #include "llvm/Support/Compiler.h" +#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/InstVisitor.h" #include "llvm/Support/Streams.h" #include "llvm/ADT/Statistic.h" @@ -47,7 +48,7 @@ namespace { void visitInstruction(Instruction &I) { cerr << "Instruction Count does not know about " << I; - abort(); + llvm_unreachable(); } public: static char ID; // Pass identification, replacement for typeid |