[llvm-commits] [llvm] r92085 - /llvm/trunk/lib/Analysis/PHITransAddr.cpp

David Greene greened at obbligato.org
Wed Dec 23 15:27:16 PST 2009


Author: greened
Date: Wed Dec 23 17:27:15 2009
New Revision: 92085

URL: http://llvm.org/viewvc/llvm-project?rev=92085&view=rev
Log:

Change dbgs() back to errs() as Chris requested.

Modified:
    llvm/trunk/lib/Analysis/PHITransAddr.cpp

Modified: llvm/trunk/lib/Analysis/PHITransAddr.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/PHITransAddr.cpp?rev=92085&r1=92084&r2=92085&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/PHITransAddr.cpp (original)
+++ llvm/trunk/lib/Analysis/PHITransAddr.cpp Wed Dec 23 17:27:15 2009
@@ -63,9 +63,9 @@
   // 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 @@
     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;
   }
   





More information about the llvm-commits mailing list