summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-05 00:10:05 +0000
committerDavid Greene <greened@obbligato.org>2010-01-05 00:10:05 +0000
commit646aacb097c27e86c754be5329e9c799f4d87067 (patch)
tree0e62e0581bf473f7fbf0434a2045986d870b6060
parent55cf95c2028e6ec385f81846eb93a685889d529c (diff)
downloadbcm5719-llvm-646aacb097c27e86c754be5329e9c799f4d87067.tar.gz
bcm5719-llvm-646aacb097c27e86c754be5329e9c799f4d87067.zip
Change errs() to dbgs().
llvm-svn: 92548
-rw-r--r--llvm/lib/CodeGen/MachineSSAUpdater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineSSAUpdater.cpp b/llvm/lib/CodeGen/MachineSSAUpdater.cpp
index 292096f00dd..467ea5d1735 100644
--- a/llvm/lib/CodeGen/MachineSSAUpdater.cpp
+++ b/llvm/lib/CodeGen/MachineSSAUpdater.cpp
@@ -210,7 +210,7 @@ unsigned MachineSSAUpdater::GetValueInMiddleOfBlock(MachineBasicBlock *BB) {
// If the client wants to know about all new instructions, tell it.
if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
- DEBUG(errs() << " Inserted PHI: " << *InsertedPHI << "\n");
+ DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n");
return InsertedPHI->getOperand(0).getReg();
}
@@ -383,7 +383,7 @@ unsigned MachineSSAUpdater::GetValueAtEndOfBlockInternal(MachineBasicBlock *BB){
InsertedPHI->eraseFromParent();
InsertedVal = ConstVal;
} else {
- DEBUG(errs() << " Inserted PHI: " << *InsertedPHI << "\n");
+ DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n");
// If the client wants to know about all new instructions, tell it.
if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
OpenPOWER on IntegriCloud