diff graal/GraalCompiler/src/com/sun/c1x/opt/PhiSimplifier.java @ 2718:c1ce2a53d6c3

Attempt to remove dependency between backend and BlockBegin.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 19 May 2011 16:05:42 +0200
parents 785e9ecdcc69
children a2f62de90c76
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/opt/PhiSimplifier.java	Thu May 19 14:31:03 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/opt/PhiSimplifier.java	Thu May 19 16:05:42 2011 +0200
@@ -37,7 +37,7 @@
 
     public PhiSimplifier(IR ir) {
         this.ir = ir;
-        ir.startBlock.iterateAnyOrder(this, false);
+        ir.getHIRStartBlock().iterateAnyOrder(this, false);
     }
 
     /**