Add extra case here to avoid getting spurious output

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2086 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-01 00:45:33 +00:00
parent e0d1d1acf6
commit f7196949bb

View File

@ -380,6 +380,10 @@ public:
// Nothing of interest
}
void visitSetCondInst(SetCondInst *SCI) {
// hrm, notice a pattern?
}
void visitInstruction(Instruction *I) {
cerr << "Unknown instruction to FunctionBodyTransformer:\n";
I->dump();