test/hotspot/jtreg/compiler/c2/aarch64/TestUnsafeVolatileLoad.java
changeset 52220 9c260a6b6471
parent 50874 551c340ca01a
equal deleted inserted replaced
52219:151b990e3764 52220:9c260a6b6471
    49         return unsafe.getIntVolatile(this, f_int_off);
    49         return unsafe.getIntVolatile(this, f_int_off);
    50     }
    50     }
    51 
    51 
    52     public int testObj()
    52     public int testObj()
    53     {
    53     {
    54         return ((Integer)unsafe.getObjectVolatile(this, f_obj_off));
    54         return ((Integer)unsafe.getReferenceVolatile(this, f_obj_off));
    55     }
    55     }
    56 }
    56 }