# HG changeset patch # User Roland Schatz # Date 1383561157 -3600 # Node ID a66169e30623225558eac1f093b7f32554d7fc2c # Parent 9334392ed2792dc6544fb06299046c5ebdfbe340 Move second RemoveValueProxyPhase. diff -r 9334392ed279 -r a66169e30623 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/phases/LowTier.java --- 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()); } }