aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-24 10:47:20 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-24 10:47:20 +0000
commitddea63b3a373bd0004d30ba797432749d06726d9 (patch)
treecf553e542bb6874cb4288bebda5d5b82225068b0 /lib
parentf55f61f8a105e225f3589cac07ae98c08c26b1f6 (diff)
downloadexternal_llvm-ddea63b3a373bd0004d30ba797432749d06726d9.zip
external_llvm-ddea63b3a373bd0004d30ba797432749d06726d9.tar.gz
external_llvm-ddea63b3a373bd0004d30ba797432749d06726d9.tar.bz2
More move to raw_ostream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76966 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/LiveInterval.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp
index 78bde39..4e63e21 100644
--- a/lib/CodeGen/LiveInterval.cpp
+++ b/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";
}