mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 00:24:26 +00:00
eliminate the "Value" printing methods that print to a std::ostream.
This required converting a bunch of stuff off DOUT and other cleanups. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79819 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -466,7 +466,7 @@ bool LICM::isLoopInvariantInst(Instruction &I) {
|
||||
/// position, and may either delete it or move it to outside of the loop.
|
||||
///
|
||||
void LICM::sink(Instruction &I) {
|
||||
DOUT << "LICM sinking instruction: " << I;
|
||||
DEBUG(errs() << "LICM sinking instruction: " << I);
|
||||
|
||||
SmallVector<BasicBlock*, 8> ExitBlocks;
|
||||
CurLoop->getExitBlocks(ExitBlocks);
|
||||
@ -860,7 +860,7 @@ void LICM::FindPromotableValuesInLoop(
|
||||
for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
|
||||
ValueToAllocaMap.insert(std::make_pair(I->getValue(), AI));
|
||||
|
||||
DOUT << "LICM: Promoting value: " << *V << "\n";
|
||||
DEBUG(errs() << "LICM: Promoting value: " << *V << "\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user