From: Duncan Sands Date: Fri, 9 Sep 2011 20:22:48 +0000 (+0000) Subject: Don't tack "Instruction not interpretable yet!" onto the end of X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a50c6d95e492590c14e5ace8c3e2e1de8bf5e80e;p=oota-llvm.git 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 --- diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 60b9cb7a5b1..ee2b4596f38 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!"); }