summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/RegAllocLocal.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2006-12-07 20:04:42 +0000
committerBill Wendling <isanbard@gmail.com>2006-12-07 20:04:42 +0000
commit22e978a736cb34291c15de07e5b31d395d08dee5 (patch)
treefefd1c0e6a2b008cd41efe30abd584ddd863c4ee /llvm/lib/CodeGen/RegAllocLocal.cpp
parent2e169c37eae1db712bb8d46b86b14e94e12f6141 (diff)
downloadbcm5719-llvm-22e978a736cb34291c15de07e5b31d395d08dee5.tar.gz
bcm5719-llvm-22e978a736cb34291c15de07e5b31d395d08dee5.zip
Removing even more <iostream> includes.
llvm-svn: 32320
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocLocal.cpp')
-rw-r--r--llvm/lib/CodeGen/RegAllocLocal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocLocal.cpp b/llvm/lib/CodeGen/RegAllocLocal.cpp
index 8d10ff703b0..876eb950d9e 100644
--- a/llvm/lib/CodeGen/RegAllocLocal.cpp
+++ b/llvm/lib/CodeGen/RegAllocLocal.cpp
@@ -758,7 +758,7 @@ void RA::AllocateBasicBlock(MachineBasicBlock &MBB) {
for (unsigned i = MRegisterInfo::FirstVirtualRegister,
e = MF->getSSARegMap()->getLastVirtReg(); i <= e; ++i)
if (unsigned PR = Virt2PhysRegMap[i]) {
- std::cerr << "Register still mapped: " << i << " -> " << PR << "\n";
+ cerr << "Register still mapped: " << i << " -> " << PR << "\n";
AllOk = false;
}
assert(AllOk && "Virtual registers still in phys regs?");
OpenPOWER on IntegriCloud