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 | 23c2392eed45ae0e90168d24abf2fd109ad94b34 (patch) | |
tree | 2b01b6c8aa630c571974eef8386b7dc9ff43a383 /lib | |
parent | 98ab2e6a3e648b1810993be180ba737517728a32 (diff) | |
download | external_llvm-23c2392eed45ae0e90168d24abf2fd109ad94b34.zip external_llvm-23c2392eed45ae0e90168d24abf2fd109ad94b34.tar.gz external_llvm-23c2392eed45ae0e90168d24abf2fd109ad94b34.tar.bz2 |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92528 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/LiveInterval.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/LiveInterval.cpp b/lib/CodeGen/LiveInterval.cpp index cc286aa..efcdf49 100644 --- a/lib/CodeGen/LiveInterval.cpp +++ b/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"; } |