Add extra case here to avoid getting spurious output
authorChris Lattner <sabre@nondot.org>
Mon, 1 Apr 2002 00:45:33 +0000 (00:45 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 1 Apr 2002 00:45:33 +0000 (00:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2086 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/OldPoolAllocate.cpp

index f7437db81e3e1f04afcfed2263222728857a1c98..b064513ae3b2495a034c3bae17b4360db78df9ec 100644 (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();