[llvm-commits] [llvm] r92634 - /llvm/trunk/lib/MC/MCValue.cpp
David Greene
greened at obbligato.org
Mon Jan 4 17:28:17 PST 2010
Author: greened
Date: Mon Jan 4 19:28:17 2010
New Revision: 92634
URL: http://llvm.org/viewvc/llvm-project?rev=92634&view=rev
Log:
Change errs() to dbgs().
Modified:
llvm/trunk/lib/MC/MCValue.cpp
Modified: llvm/trunk/lib/MC/MCValue.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCValue.cpp?rev=92634&r1=92633&r2=92634&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCValue.cpp (original)
+++ llvm/trunk/lib/MC/MCValue.cpp Mon Jan 4 19:28:17 2010
@@ -8,6 +8,7 @@
//===----------------------------------------------------------------------===//
#include "llvm/MC/MCValue.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
@@ -30,5 +31,5 @@
}
void MCValue::dump() const {
- print(errs(), 0);
+ print(dbgs(), 0);
}
More information about the llvm-commits
mailing list