From: Chris Lattner Date: Thu, 9 Dec 2004 07:15:52 +0000 (+0000) Subject: note to self: Do not check in debugging code! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=13eaf4f14d4871939e1d3bd94e82d19aa8af0618;p=oota-llvm.git note to self: Do not check in debugging code! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18693 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 40b2d485437..4be4f30ff67 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -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();