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
This commit is contained in:
Chris Lattner 2004-12-09 07:15:52 +00:00
parent 96a52a6f6c
commit 13eaf4f14d

View 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();