diff options
author | David Greene <greened@obbligato.org> | 2010-01-04 22:41:43 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-04 22:41:43 +0000 |
commit | c2155323187121b4dd99b3389d0075f3664a26c3 (patch) | |
tree | d7e801c1ce7fb9f85f1445fac1ad0e7c6c1e742f /llvm/lib/CodeGen/LiveInterval.cpp | |
parent | 90be58afce42b766dcb0a5bcaa54d136ffb63b58 (diff) | |
download | bcm5719-llvm-c2155323187121b4dd99b3389d0075f3664a26c3.tar.gz bcm5719-llvm-c2155323187121b4dd99b3389d0075f3664a26c3.zip |
Change errs() to dbgs().
llvm-svn: 92528
Diffstat (limited to 'llvm/lib/CodeGen/LiveInterval.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveInterval.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveInterval.cpp b/llvm/lib/CodeGen/LiveInterval.cpp index cc286aa13d6..efcdf494deb 100644 --- a/llvm/lib/CodeGen/LiveInterval.cpp +++ b/llvm/lib/CodeGen/LiveInterval.cpp @@ -24,6 +24,7 @@ #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/STLExtras.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetRegisterInfo.h" #include <algorithm> @@ -813,7 +814,7 @@ raw_ostream& llvm::operator<<(raw_ostream& os, const LiveRange &LR) { } void LiveRange::dump() const { - errs() << *this << "\n"; + dbgs() << *this << "\n"; } void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const { @@ -872,7 +873,7 @@ void LiveInterval::print(raw_ostream &OS, const TargetRegisterInfo *TRI) const { } void LiveInterval::dump() const { - errs() << *this << "\n"; + dbgs() << *this << "\n"; } |