Respond to Chris' review:
[oota-llvm.git] / lib / Analysis / PHITransAddr.cpp
index 78bdb419fa9de99dfd844a107f3da5e01b6c82ca..334a188d12f7543269e5d9ab8601738a450ca156 100644 (file)
@@ -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;
   }