[llvm-commits] [llvm] r92528 - /llvm/trunk/lib/CodeGen/LiveInterval.cpp
David Greene
greened at obbligato.org
Mon Jan 4 14:41:44 PST 2010
Author: greened
Date: Mon Jan 4 16:41:43 2010
New Revision: 92528
URL: http://llvm.org/viewvc/llvm-project?rev=92528&view=rev
Log:
Change errs() to dbgs().
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=92528&r1=92527&r2=92528&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveInterval.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveInterval.cpp Mon Jan 4 16:41:43 2010
@@ -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 @@
}
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::dump() const {
- errs() << *this << "\n";
+ dbgs() << *this << "\n";
}
More information about the llvm-commits
mailing list