diff graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/MidTier.java @ 13378:16d99e9d77ad

Options: rename flag (AOTCompilation -> ImmutableCode)
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 18 Dec 2013 11:13:17 +0100
parents 3a05ef752a40
children 75a67ebd50e8
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/MidTier.java	Wed Dec 18 09:02:01 2013 +0100
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/MidTier.java	Wed Dec 18 11:13:17 2013 +0100
@@ -33,7 +33,7 @@
 public class MidTier extends PhaseSuite<MidTierContext> {
 
     public MidTier() {
-        CanonicalizerPhase canonicalizer = new CanonicalizerPhase(!AOTCompilation.getValue());
+        CanonicalizerPhase canonicalizer = new CanonicalizerPhase(!ImmutableCode.getValue());
 
         if (OptPushThroughPi.getValue()) {
             appendPhase(new PushThroughPiPhase());