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
This commit is contained in:
Duncan Sands 2011-09-09 20:22:48 +00:00
parent 84d043a8b3
commit a50c6d95e4

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