changeset 6357:2d902712a3f3

don't dump the graph in SchedulePhase during lowering
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 11 Sep 2012 14:50:35 +0200
parents 41fc19bd618d
children 31966e3f42d2
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LoweringPhase.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LoweringPhase.java	Tue Sep 11 14:48:24 2012 +0200
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LoweringPhase.java	Tue Sep 11 14:50:35 2012 +0200
@@ -118,7 +118,7 @@
         while (true) {
             int mark = graph.getMark();
             final SchedulePhase schedule = new SchedulePhase();
-            schedule.apply(graph);
+            schedule.apply(graph, false);
 
             processBlock(schedule.getCFG().getStartBlock(), graph.createNodeBitMap(), null, schedule, processed);
             Debug.dump(graph, "Lowering iteration %d", i++);