[llvm-commits] [llvm] r92605 - /llvm/trunk/lib/Transforms/Utils/AddrModeMatcher.cpp
David Greene
greened at obbligato.org
Mon Jan 4 17:26:55 PST 2010
Author: greened
Date: Mon Jan 4 19:26:54 2010
New Revision: 92605
URL: http://llvm.org/viewvc/llvm-project?rev=92605&view=rev
Log:
Change errs() to dbgs().
Modified:
llvm/trunk/lib/Transforms/Utils/AddrModeMatcher.cpp
Modified: llvm/trunk/lib/Transforms/Utils/AddrModeMatcher.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/AddrModeMatcher.cpp?rev=92605&r1=92604&r2=92605&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/AddrModeMatcher.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/AddrModeMatcher.cpp Mon Jan 4 19:26:54 2010
@@ -17,6 +17,7 @@
#include "llvm/Instruction.h"
#include "llvm/Assembly/Writer.h"
#include "llvm/Target/TargetData.h"
+#include "llvm/Support/Debug.h"
#include "llvm/Support/GetElementPtrTypeIterator.h"
#include "llvm/Support/PatternMatch.h"
#include "llvm/Support/raw_ostream.h"
@@ -54,8 +55,8 @@
}
void ExtAddrMode::dump() const {
- print(errs());
- errs() << '\n';
+ print(dbgs());
+ dbgs() << '\n';
}
More information about the llvm-commits
mailing list