diff graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.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 a3cd5eb68837
children 0d268cf66e24
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Fri May 20 12:08:58 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/graph/GraphBuilder.java	Fri May 20 14:22:22 2011 +0200
@@ -180,7 +180,7 @@
         BlockBegin startBlockBegin = new BlockBegin(0, startBlock.blockID, graph);
         startBlock.firstInstruction = startBlockBegin;
 
-        graph.root().setStart(startBlockBegin);
+        graph.start().setStart(startBlockBegin);
 
         RiExceptionHandler[] handlers = rootMethod.exceptionHandlers();
         if (handlers != null && handlers.length > 0) {