summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-09-09 20:22:48 +0000
committerDuncan Sands <baldrick@free.fr>2011-09-09 20:22:48 +0000
commita50c6d95e492590c14e5ace8c3e2e1de8bf5e80e (patch)
treea20d5859232f2fd3898a4eab652e1b53f8054785 /lib/ExecutionEngine
parent84d043a8b38d43a16549ca7e7cc9b275b2fa3aea (diff)
downloadllvm-a50c6d95e492590c14e5ace8c3e2e1de8bf5e80e.tar.gz
llvm-a50c6d95e492590c14e5ace8c3e2e1de8bf5e80e.tar.bz2
llvm-a50c6d95e492590c14e5ace8c3e2e1de8bf5e80e.tar.xz
Don't tack "Instruction not interpretable yet!" onto the end of
the instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139398 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/Interpreter/Interpreter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h
index 60b9cb7a5b..ee2b4596f3 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -174,7 +174,7 @@ public:
void visitVAArgInst(VAArgInst &I);
void visitInstruction(Instruction &I) {
- errs() << I;
+ errs() << I << "\n";
llvm_unreachable("Instruction not interpretable yet!");
}