changeset 12680:3affe68ddb50

Merge
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Tue, 05 Nov 2013 19:00:51 +0100
parents 944e31d1b427 (diff) e53aa17b8fdf (current diff)
children 343477cb53ff
files
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);
--- 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);