# HG changeset patch # User Christos Kotselidis # Date 1383674451 -3600 # Node ID 3affe68ddb50dbc5a9f014d00aafec278a87b45a # Parent 944e31d1b427b6063c38b0f001f7118e677031e1# Parent e53aa17b8fdf097c2bd509d281b391db00dfe270 Merge diff -r e53aa17b8fdf -r 3affe68ddb50 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java Tue Nov 05 15:46:01 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/G1PostWriteBarrier.java Tue Nov 05 19:00:51 2013 +0100 @@ -27,7 +27,7 @@ public class G1PostWriteBarrier extends WriteBarrier { - private boolean alwaysNull; + private final boolean alwaysNull; public G1PostWriteBarrier(ValueNode object, ValueNode value, LocationNode location, boolean precise, boolean alwaysNull) { super(object, value, location, precise); diff -r e53aa17b8fdf -r 3affe68ddb50 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java Tue Nov 05 15:46:01 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/nodes/SerialWriteBarrier.java Tue Nov 05 19:00:51 2013 +0100 @@ -27,7 +27,7 @@ public class SerialWriteBarrier extends WriteBarrier { - private boolean alwaysNull; + private final boolean alwaysNull; public SerialWriteBarrier(ValueNode object, LocationNode location, boolean precise, boolean alwaysNull) { super(object, null, location, precise);