diff graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/FloatingAccessNode.java @ 10828:b05e1ff3aac0

Rename WriteBarrierType to BarrierType
author Christos Kotselidis <christos.kotselidis@oracle.com>
date Sun, 21 Jul 2013 19:15:40 +0200
parents 0910c930c66e
children 000ee2d0c518
line wrap: on
line diff
--- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/FloatingAccessNode.java	Fri Jul 19 22:21:31 2013 +0200
+++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/FloatingAccessNode.java	Sun Jul 21 19:15:40 2013 +0200
@@ -32,7 +32,7 @@
     @Input private LocationNode location;
     @Input private FrameState deoptState;
     private boolean nullCheck;
-    private WriteBarrierType barrierType;
+    private BarrierType barrierType;
     private boolean compressible;
 
     public ValueNode object() {
@@ -61,7 +61,7 @@
         this.location = location;
     }
 
-    public FloatingAccessNode(ValueNode object, LocationNode location, Stamp stamp, GuardingNode guard, WriteBarrierType barrierType, boolean compressible) {
+    public FloatingAccessNode(ValueNode object, LocationNode location, Stamp stamp, GuardingNode guard, BarrierType barrierType, boolean compressible) {
         super(stamp, guard);
         this.object = object;
         this.location = location;
@@ -96,7 +96,7 @@
     }
 
     @Override
-    public WriteBarrierType getWriteBarrierType() {
+    public BarrierType getBarrierType() {
         return barrierType;
     }