[llvm-commits] [llvm] r79760 - /llvm/trunk/lib/CodeGen/ScheduleDAG.cpp

Bill Wendling isanbard at gmail.com
Sat Aug 22 13:41:06 PDT 2009


Author: void
Date: Sat Aug 22 15:41:06 2009
New Revision: 79760

URL: http://llvm.org/viewvc/llvm-project?rev=79760&view=rev
Log:
Convert DOUT to DEBUG(errs()...).

Modified:
    llvm/trunk/lib/CodeGen/ScheduleDAG.cpp

Modified: llvm/trunk/lib/CodeGen/ScheduleDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/ScheduleDAG.cpp?rev=79760&r1=79759&r2=79760&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/ScheduleDAG.cpp (original)
+++ llvm/trunk/lib/CodeGen/ScheduleDAG.cpp Sat Aug 22 15:41:06 2009
@@ -60,9 +60,11 @@
 
   Schedule();
 
-  DOUT << "*** Final schedule ***\n";
-  DEBUG(dumpSchedule());
-  DOUT << "\n";
+  DEBUG({
+      errs() << "*** Final schedule ***\n";
+      dumpSchedule();
+      errs() << '\n';
+    });
 }
 
 /// addPred - This adds the specified edge as a pred of the current node if





More information about the llvm-commits mailing list