Don't tack "Instruction not interpretable yet!" onto the end of
authorDuncan Sands <baldrick@free.fr>
Fri, 9 Sep 2011 20:22:48 +0000 (20:22 +0000)
committerDuncan Sands <baldrick@free.fr>
Fri, 9 Sep 2011 20:22:48 +0000 (20:22 +0000)
the instruction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139398 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/Interpreter/Interpreter.h

index 60b9cb7a5b1eb82ae6b8a4fa785ddf016606a05e..ee2b4596f38f5c05754c27dd4ddaf2be4bacc39f 100644 (file)
@@ -174,7 +174,7 @@ public:
 
   void visitVAArgInst(VAArgInst &I);
   void visitInstruction(Instruction &I) {
-    errs() << I;
+    errs() << I << "\n";
     llvm_unreachable("Instruction not interpretable yet!");
   }