changeset 12657:a66169e30623

Move second RemoveValueProxyPhase.
author Roland Schatz <roland.schatz@oracle.com>
date Mon, 04 Nov 2013 11:32:37 +0100
parents 9334392ed279
children ef6745a4597a
files graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java	Mon Nov 04 11:25:10 2013 +0100
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java	Mon Nov 04 11:32:37 2013 +0100
@@ -35,10 +35,10 @@
 
         appendPhase(new LoweringPhase(canonicalizer));
 
+        appendPhase(new RemoveValueProxyPhase());
+
         appendPhase(new ExpandLogicPhase());
 
         appendPhase(new DeadCodeEliminationPhase());
-
-        appendPhase(new RemoveValueProxyPhase());
     }
 }