note to self: Do not check in debugging code!
authorChris Lattner <sabre@nondot.org>
Thu, 9 Dec 2004 07:15:52 +0000 (07:15 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 9 Dec 2004 07:15:52 +0000 (07:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18693 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 40b2d4854379343e40b242f7495bf4c2b39ae203..4be4f30ff6752194bfc619fa3b03a6166e3f275e 100644 (file)
@@ -4215,7 +4215,6 @@ static bool TryToSinkInstruction(Instruction *I, BasicBlock *DestBlock) {
          Scan != E; ++Scan)
       if (Scan->mayWriteToMemory())
         return false;
-    std::cerr << "SUNK LOAD: " << *LI;
   }
 
   BasicBlock::iterator InsertPos = DestBlock->begin();