[llvm-commits] [llvm] r92638 - /llvm/trunk/lib/Support/ConstantRange.cpp

David Greene greened at obbligato.org
Mon Jan 4 17:28:33 PST 2010


Author: greened
Date: Mon Jan  4 19:28:32 2010
New Revision: 92638

URL: http://llvm.org/viewvc/llvm-project?rev=92638&view=rev
Log:
Change errs() to dbgs().

Modified:
    llvm/trunk/lib/Support/ConstantRange.cpp

Modified: llvm/trunk/lib/Support/ConstantRange.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/ConstantRange.cpp?rev=92638&r1=92637&r2=92638&view=diff

==============================================================================
--- llvm/trunk/lib/Support/ConstantRange.cpp (original)
+++ llvm/trunk/lib/Support/ConstantRange.cpp Mon Jan  4 19:28:32 2010
@@ -22,6 +22,7 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Support/ConstantRange.h"
+#include "llvm/Support/Debug.h"
 #include "llvm/Support/raw_ostream.h"
 #include "llvm/Instructions.h"
 using namespace llvm;
@@ -655,7 +656,7 @@
 /// dump - Allow printing from a debugger easily...
 ///
 void ConstantRange::dump() const {
-  print(errs());
+  print(dbgs());
 }
 
 





More information about the llvm-commits mailing list