aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/PHITransAddr.cpp
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
commita8e21d485a71116f187523460efd367763cd8d59 (patch)
tree47f965291e46f44c564ea3cf04b5a58c451df82d /lib/Analysis/PHITransAddr.cpp
parent98d67d7d7e8156d78b8c7d82c15ff52ed92bcc86 (diff)
Change dbgs() back to errs() as Chris requested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92085 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PHITransAddr.cpp')
-rw-r--r--lib/Analysis/PHITransAddr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/PHITransAddr.cpp b/lib/Analysis/PHITransAddr.cpp
index 78bdb419fa..334a188d12 100644
--- a/lib/Analysis/PHITransAddr.cpp
+++ b/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;
}