changeset 9413:4f8b7dc2766d

SchedulePhase: compute post-dominators in CFG-graph post-dominators are needed by LoweringPhase
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 29 Apr 2013 12:06:10 +0200
parents 0097d456ed57
children a58860b72b1f
files graal/com.oracle.graal.phases/src/com/oracle/graal/phases/schedule/SchedulePhase.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/schedule/SchedulePhase.java	Mon Apr 29 10:21:55 2013 +0200
+++ b/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/schedule/SchedulePhase.java	Mon Apr 29 12:06:10 2013 +0200
@@ -171,7 +171,7 @@
 
     @Override
     protected void run(StructuredGraph graph) {
-        cfg = ControlFlowGraph.compute(graph, true, true, true, false);
+        cfg = ControlFlowGraph.compute(graph, true, true, true, true);
         earliestCache = graph.createNodeMap();
         blockToNodesMap = new BlockMap<>(cfg);