# HG changeset patch # User Josef Eisl # Date 1430821206 -7200 # Node ID 9cbc02c8a0e0908cdbe6795b840416b910428831 # Parent 0bb06deee33b773ce71db4356fe11a906bbe8967 JumpOp: set outgoingValues in the right constructor. diff -r 0bb06deee33b -r 9cbc02c8a0e0 graal/com.oracle.graal.lir/src/com/oracle/graal/lir/StandardOp.java --- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/StandardOp.java Tue May 05 12:12:33 2015 +0200 +++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/StandardOp.java Tue May 05 12:20:06 2015 +0200 @@ -138,12 +138,12 @@ public JumpOp(LabelRef destination) { this(TYPE, destination); - this.outgoingValues = NO_VALUES; } protected JumpOp(LIRInstructionClass c, LabelRef destination) { super(c); this.destination = destination; + this.outgoingValues = NO_VALUES; } public void setOutgoingValues(Value[] values) {