aboutsummaryrefslogtreecommitdiffstats
path: root/utils/TableGen/DAGISelMatcherOpt.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-07 07:21:24 +0000
committerChris Lattner <sabre@nondot.org>2010-03-07 07:21:24 +0000
commit81d6d52592b928838d706e9fc5c9779de017d0d7 (patch)
tree234aaf17d383413ffcdfcacce6ec4d04b8d16e90 /utils/TableGen/DAGISelMatcherOpt.cpp
parent6fd326b7ff3f114f3b1eda05e1142e52222c6b54 (diff)
downloadexternal_llvm-81d6d52592b928838d706e9fc5c9779de017d0d7.zip
external_llvm-81d6d52592b928838d706e9fc5c9779de017d0d7.tar.gz
external_llvm-81d6d52592b928838d706e9fc5c9779de017d0d7.tar.bz2
turn off debug spew
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97912 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/DAGISelMatcherOpt.cpp')
-rw-r--r--utils/TableGen/DAGISelMatcherOpt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/TableGen/DAGISelMatcherOpt.cpp b/utils/TableGen/DAGISelMatcherOpt.cpp
index 99349dd..910c4c5 100644
--- a/utils/TableGen/DAGISelMatcherOpt.cpp
+++ b/utils/TableGen/DAGISelMatcherOpt.cpp
@@ -343,7 +343,7 @@ static void FactorNodes(OwningPtr<Matcher> &MatcherPtr) {
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 @@ static void FactorNodes(OwningPtr<Matcher> &MatcherPtr) {
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