diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 17:47:05 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 17:47:05 +0000 |
commit | 96b90539d6a97cd27b6483acaf743b24bb08ed1a (patch) | |
tree | eb460a5b0d53018556daa7f6438830208738d05f | |
parent | 40f7a007e9d06078ff49e5bcc4587150c098fb66 (diff) | |
download | bcm5719-llvm-96b90539d6a97cd27b6483acaf743b24bb08ed1a.tar.gz bcm5719-llvm-96b90539d6a97cd27b6483acaf743b24bb08ed1a.zip |
Change errs() to dbgs().
llvm-svn: 92490
-rw-r--r-- | llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp b/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp index 3c7961c2c33..12584bdadbd 100644 --- a/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp +++ b/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp @@ -336,14 +336,14 @@ BreakAntiDependencies(std::vector<SUnit>& SUnits, #ifndef NDEBUG { - DEBUG(errs() << "Critical path has total latency " + DEBUG(dbgs() << "Critical path has total latency " << (Max->getDepth() + Max->Latency) << "\n"); - DEBUG(errs() << "Available regs:"); + DEBUG(dbgs() << "Available regs:"); for (unsigned Reg = 0; Reg < TRI->getNumRegs(); ++Reg) { if (KillIndices[Reg] == ~0u) - DEBUG(errs() << " " << TRI->getName(Reg)); + DEBUG(dbgs() << " " << TRI->getName(Reg)); } - DEBUG(errs() << '\n'); + DEBUG(dbgs() << '\n'); } #endif @@ -498,7 +498,7 @@ BreakAntiDependencies(std::vector<SUnit>& SUnits, if (unsigned NewReg = findSuitableFreeRegister(AntiDepReg, LastNewReg[AntiDepReg], RC)) { - DEBUG(errs() << "Breaking anti-dependence edge on " + DEBUG(dbgs() << "Breaking anti-dependence edge on " << TRI->getName(AntiDepReg) << " with " << RegRefs.count(AntiDepReg) << " references" << " using " << TRI->getName(NewReg) << "!\n"); |