diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-03-07 07:21:24 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-03-07 07:21:24 +0000 |
| commit | c95d58d31a9c50437a77d42c8e8f408080a705f2 (patch) | |
| tree | 2214b7cce9336a5bc6ce962def4701f067ca96db | |
| parent | a16038929019faff40c4167820c06c73be2f0e01 (diff) | |
| download | bcm5719-llvm-c95d58d31a9c50437a77d42c8e8f408080a705f2.tar.gz bcm5719-llvm-c95d58d31a9c50437a77d42c8e8f408080a705f2.zip | |
turn off debug spew
llvm-svn: 97912
| -rw-r--r-- | llvm/utils/TableGen/DAGISelMatcherOpt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/DAGISelMatcherOpt.cpp b/llvm/utils/TableGen/DAGISelMatcherOpt.cpp index 99349dd279b..910c4c5d697 100644 --- a/llvm/utils/TableGen/DAGISelMatcherOpt.cpp +++ b/llvm/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 |

