From: Chris Lattner Date: Mon, 1 Apr 2002 00:45:33 +0000 (+0000) Subject: Add extra case here to avoid getting spurious output X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f7196949bb5743b12e4d2a694cb377c4363bda9f;p=oota-llvm.git 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 --- diff --git a/lib/Transforms/IPO/OldPoolAllocate.cpp b/lib/Transforms/IPO/OldPoolAllocate.cpp index f7437db81e3..b064513ae3b 100644 --- a/lib/Transforms/IPO/OldPoolAllocate.cpp +++ b/lib/Transforms/IPO/OldPoolAllocate.cpp @@ -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();