Move to raw_ostream.

llvm-svn: 76963
This commit is contained in:
Daniel Dunbar
2009-07-24 09:53:24 +00:00
parent 12368685d8
commit 8ef0735dd5
4 changed files with 77 additions and 74 deletions

View File

@@ -594,9 +594,9 @@ bool LiveIntervals::conflictsWithPhysRegRef(LiveInterval &li,
void LiveIntervals::printRegName(unsigned reg) const {
if (TargetRegisterInfo::isPhysicalRegister(reg))
cerr << tri_->getName(reg);
errs() << tri_->getName(reg);
else
cerr << "%reg" << reg;
errs() << "%reg" << reg;
}
void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,