Don't tack "Instruction not interpretable yet!" onto the end of

the instruction.

llvm-svn: 139398
This commit is contained in:
Duncan Sands 2011-09-09 20:22:48 +00:00
parent b4c32d92ea
commit eee3fca1c0
1 changed files with 1 additions and 1 deletions

View 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!");
}