diff graal/GraalCompiler/src/com/sun/c1x/graph/IR.java @ 2751:0fe79e7435c3

More scheduling. Removed need for cfg iteration in the phi simplifier.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Fri, 20 May 2011 14:22:22 +0200
parents 45a58c9536de
children bfcdda4fdd73
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Fri May 20 12:08:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/IR.java	Fri May 20 14:22:22 2011 +0200
@@ -256,6 +256,6 @@
     }
 
     public BlockBegin getHIRStartBlock() {
-        return (BlockBegin) compilation.graph.root().successors().get(0);
+        return (BlockBegin) compilation.graph.start().successors().get(0);
     }
 }