test/hotspot/jtreg/compiler/c2/aarch64/TestUnsafeVolatileCAS.java
changeset 52220 9c260a6b6471
parent 50874 551c340ca01a
child 52409 87bc444ca642
equal deleted inserted replaced
52219:151b990e3764 52220:9c260a6b6471
    73         unsafe.compareAndSetInt(this, f_int_off, x, i);
    73         unsafe.compareAndSetInt(this, f_int_off, x, i);
    74     }
    74     }
    75 
    75 
    76     public void testObj(Object x, Object o)
    76     public void testObj(Object x, Object o)
    77     {
    77     {
    78         unsafe.compareAndSetObject(this, f_obj_off, x, o);
    78         unsafe.compareAndSetReference(this, f_obj_off, x, o);
    79     }
    79     }
    80 }
    80 }