summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2009-12-23 23:27:15 +0000
committerDavid Greene <greened@obbligato.org>2009-12-23 23:27:15 +0000
commitf790593e6ec436820740550456193e61636391a5 (patch)
tree6f85cd0758cddd9d9b74fbac2b6836b82a262c87 /llvm/lib/Analysis
parentefebb234b759dd1724caf9ad7603c58b8a651dfe (diff)
downloadbcm5719-llvm-f790593e6ec436820740550456193e61636391a5.tar.gz
bcm5719-llvm-f790593e6ec436820740550456193e61636391a5.zip
Change dbgs() back to errs() as Chris requested.
llvm-svn: 92085
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r--llvm/lib/Analysis/PHITransAddr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/PHITransAddr.cpp b/llvm/lib/Analysis/PHITransAddr.cpp
index 78bdb419fa9..334a188d12f 100644
--- a/llvm/lib/Analysis/PHITransAddr.cpp
+++ b/llvm/lib/Analysis/PHITransAddr.cpp
@@ -63,9 +63,9 @@ static bool VerifySubExpr(Value *Expr,
// If it isn't in the InstInputs list it is a subexpr incorporated into the
// address. Sanity check that it is phi translatable.
if (!CanPHITrans(I)) {
- dbgs() << "Non phi translatable instruction found in PHITransAddr, either "
+ errs() << "Non phi translatable instruction found in PHITransAddr, either "
"something is missing from InstInputs or CanPHITrans is wrong:\n";
- dbgs() << *I << '\n';
+ errs() << *I << '\n';
return false;
}
@@ -89,9 +89,9 @@ bool PHITransAddr::Verify() const {
return false;
if (!Tmp.empty()) {
- dbgs() << "PHITransAddr inconsistent, contains extra instructions:\n";
+ errs() << "PHITransAddr inconsistent, contains extra instructions:\n";
for (unsigned i = 0, e = InstInputs.size(); i != e; ++i)
- dbgs() << " InstInput #" << i << " is " << *InstInputs[i] << "\n";
+ errs() << " InstInput #" << i << " is " << *InstInputs[i] << "\n";
return false;
}
OpenPOWER on IntegriCloud