From 13eaf4f14d4871939e1d3bd94e82d19aa8af0618 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 9 Dec 2004 07:15:52 +0000 Subject: [PATCH] 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 --- lib/Transforms/Scalar/InstructionCombining.cpp | 1 - 1 file changed, 1 deletion(-) 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();