diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-03 13:33:33 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-08-03 13:33:33 +0000 |
| commit | c28b306423be0e7b29ad1050ed5ecb308f39b487 (patch) | |
| tree | 230dba12021a326dc3a27605ab7cbe5ad5badf3f /llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | |
| parent | 76df43c08bb18c58515d8420066a3a258c7e4805 (diff) | |
| download | llvm-c28b306423be0e7b29ad1050ed5ecb308f39b487.zip llvm-c28b306423be0e7b29ad1050ed5ecb308f39b487.tar.gz llvm-c28b306423be0e7b29ad1050ed5ecb308f39b487.tar.bz2 | |
llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like "LLVM ERROR: llvm: error:" or "LLVM ERROR: ERROR:".
llvm-svn: 77971
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Execution.cpp')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Execution.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp index b351ba2..8d21d1f 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -644,7 +644,7 @@ void Interpreter::visitUnwindInst(UnwindInst &I) { } void Interpreter::visitUnreachableInst(UnreachableInst &I) { - llvm_report_error("ERROR: Program executed an 'unreachable' instruction!"); + llvm_report_error("Program executed an 'unreachable' instruction!"); } void Interpreter::visitBranchInst(BranchInst &I) { |
