[llvm-commits] [llvm] r97912 - /llvm/trunk/utils/TableGen/DAGISelMatcherOpt.cpp
Chris Lattner
sabre at nondot.org
Sat Mar 6 23:21:25 PST 2010
Author: lattner
Date: Sun Mar 7 01:21:24 2010
New Revision: 97912
URL: http://llvm.org/viewvc/llvm-project?rev=97912&view=rev
Log:
turn off debug spew
Modified:
llvm/trunk/utils/TableGen/DAGISelMatcherOpt.cpp
Modified: llvm/trunk/utils/TableGen/DAGISelMatcherOpt.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/DAGISelMatcherOpt.cpp?rev=97912&r1=97911&r2=97912&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/DAGISelMatcherOpt.cpp (original)
+++ llvm/trunk/utils/TableGen/DAGISelMatcherOpt.cpp Sun Mar 7 01:21:24 2010
@@ -343,7 +343,7 @@
if (Scan != e &&
// Don't print it's obvious nothing extra could be merged anyway.
Scan+1 != e) {
- /*DEBUG(*/errs() << "Couldn't merge this:\n";
+ DEBUG(errs() << "Couldn't merge this:\n";
Optn->print(errs(), 4);
errs() << "into this:\n";
OptionsToMatch[Scan]->print(errs(), 4);
@@ -351,7 +351,7 @@
OptionsToMatch[Scan+1]->printOne(errs());
if (Scan+2 < e)
OptionsToMatch[Scan+2]->printOne(errs());
- errs() << "\n";
+ errs() << "\n");
}
// If we only found one option starting with this matcher, no factoring is
More information about the llvm-commits
mailing list