mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-06 11:29:27 +00:00
Debug output should go to cerr, not cout, because that's where bytecode goes.
llvm-svn: 6002
This commit is contained in:
parent
9c0a8fe1d0
commit
cf277f9143
@ -479,7 +479,7 @@ void RA::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||
}
|
||||
|
||||
if (PhysReg) {
|
||||
DEBUG(std::cout << "V: " << VirtReg << " P: " << PhysReg
|
||||
DEBUG(std::cerr << "V: " << VirtReg << " P: " << PhysReg
|
||||
<< " Killed by: " << *MI);
|
||||
removePhysReg(PhysReg);
|
||||
}
|
||||
@ -562,7 +562,7 @@ void RA::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||
}
|
||||
|
||||
if (PhysReg) {
|
||||
DEBUG(std::cout << "V: " << VirtReg << " P: " << PhysReg
|
||||
DEBUG(std::cerr << "V: " << VirtReg << " P: " << PhysReg
|
||||
<< " dead after: " << *MI);
|
||||
removePhysReg(PhysReg);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user