remove some DOUTs

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79821 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2009-08-23 04:44:11 +00:00
parent 05e9d99767
commit 569f121f4e
7 changed files with 55 additions and 54 deletions
+4 -4
View File
@@ -2094,12 +2094,12 @@ void DAGISelEmitter::run(raw_ostream &OS) {
EmitNodeTransforms(OS);
EmitPredicateFunctions(OS);
DOUT << "\n\nALL PATTERNS TO MATCH:\n\n";
DEBUG(errs() << "\n\nALL PATTERNS TO MATCH:\n\n");
for (CodeGenDAGPatterns::ptm_iterator I = CGP.ptm_begin(), E = CGP.ptm_end();
I != E; ++I) {
DOUT << "PATTERN: "; DEBUG(I->getSrcPattern()->dump());
DOUT << "\nRESULT: "; DEBUG(I->getDstPattern()->dump());
DOUT << "\n";
DEBUG(errs() << "PATTERN: "; I->getSrcPattern()->dump());
DEBUG(errs() << "\nRESULT: "; I->getDstPattern()->dump());
DEBUG(errs() << "\n");
}
// At this point, we have full information about the 'Patterns' we need to