aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-12-09 07:15:52 +0000
committerChris Lattner <sabre@nondot.org>2004-12-09 07:15:52 +0000
commit13eaf4f14d4871939e1d3bd94e82d19aa8af0618 (patch)
treeb37896045671de5aa1fdfbfa5c2698f41b359416 /lib/Transforms
parent96a52a6f6ccc63e3cb636e218a5cf7f1c5691e83 (diff)
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
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 40b2d48543..4be4f30ff6 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();