diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 10:47:20 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 10:47:20 +0000 |
commit | f26e740c8919576b9ffaafb38718f845fea2ebc1 (patch) | |
tree | a4640d91681c52c81076c76384e58a2e3ef7c0d1 /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 796e43eede5d1af588c327051f28cc6e7bf78353 (diff) | |
download | bcm5719-llvm-f26e740c8919576b9ffaafb38718f845fea2ebc1.tar.gz bcm5719-llvm-f26e740c8919576b9ffaafb38718f845fea2ebc1.zip |
More move to raw_ostream.
llvm-svn: 76966
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index 78bde3998c5..4e63e21b3d7 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -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 @@ raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) { } void LiveRange::dump() const { - cerr << *this << "\n"; + errs() << *this << "\n"; } void LiveInterval::print(std::ostream &OS, @@ -893,7 +892,7 @@ void LiveInterval::print(raw_ostream &OS, } void LiveInterval::dump() const { - cerr << *this << "\n"; + errs() << *this << "\n"; } |