Add extra case here to avoid getting spurious output
llvm-svn: 2086
diff --git a/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp b/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp
index f7437db..b064513 100644
--- a/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp
+++ b/llvm/lib/Transforms/IPO/OldPoolAllocate.cpp
@@ -380,6 +380,10 @@
// Nothing of interest
}
+ void visitSetCondInst(SetCondInst *SCI) {
+ // hrm, notice a pattern?
+ }
+
void visitInstruction(Instruction *I) {
cerr << "Unknown instruction to FunctionBodyTransformer:\n";
I->dump();