[llvm-commits] [llvm] r76966 - /llvm/trunk/lib/CodeGen/LiveInterval.cpp

Daniel Dunbar daniel at zuster.org
Fri Jul 24 03:47:58 PDT 2009


Author: ddunbar
Date: Fri Jul 24 05:47:20 2009
New Revision: 76966

URL: http://llvm.org/viewvc/llvm-project?rev=76966&view=rev
Log:
More move to raw_ostream.

Modified:
    llvm/trunk/lib/CodeGen/LiveInterval.cpp

Modified: llvm/trunk/lib/CodeGen/LiveInterval.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveInterval.cpp?rev=76966&r1=76965&r2=76966&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/LiveInterval.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveInterval.cpp Fri Jul 24 05:47:20 2009
@@ -23,11 +23,10 @@
 #include "llvm/ADT/DenseMap.h"
 #include "llvm/ADT/SmallSet.h"
 #include "llvm/ADT/STLExtras.h"
-#include "llvm/Support/Streams.h"
+#include "llvm/Support/raw_ostream.h"
 #include "llvm/Support/raw_ostream.h"
 #include "llvm/Target/TargetRegisterInfo.h"
 #include <algorithm>
-#include <ostream>
 using namespace llvm;
 
 // An example for liveAt():
@@ -825,7 +824,7 @@
 }
 
 void LiveRange::dump() const {
-  cerr << *this << "\n";
+  errs() << *this << "\n";
 }
 
 void LiveInterval::print(std::ostream &OS,
@@ -893,7 +892,7 @@
 }
 
 void LiveInterval::dump() const {
-  cerr << *this << "\n";
+  errs() << *this << "\n";
 }
 
 





More information about the llvm-commits mailing list