OpenJDK / valhalla / valhalla
changeset 55680:fa2c82a95f82 lworld
8224818: [lworld] compiler/valhalla/valuetypes/TestLWorld.java fails with ACmpOnValues=3
author | thartmann |
---|---|
date | Mon, 27 May 2019 16:05:35 +0200 |
parents | ef1ac9814c32 |
children | 0821dec01a8b |
files | test/hotspot/jtreg/compiler/valhalla/valuetypes/TestLWorld.java |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/test/hotspot/jtreg/compiler/valhalla/valuetypes/TestLWorld.java Mon May 27 15:22:21 2019 +0200 +++ b/test/hotspot/jtreg/compiler/valhalla/valuetypes/TestLWorld.java Mon May 27 16:05:35 2019 +0200 @@ -274,7 +274,7 @@ } // Test comparing value types with objects - @Test(failOn = ALLOC + LOAD + STORE + LOOP) + @Test(failOn = LOAD + LOOP) public boolean test6(Object arg) { Object vt = MyValue1.createWithFieldsInline(rI, rL); if (vt == arg || vt == (Object)valueField1 || vt == objectField1 || vt == null || @@ -547,7 +547,7 @@ } // Test comparing value types with interfaces - @Test(failOn = ALLOC + LOAD + STORE + LOOP) + @Test(failOn = LOAD + LOOP) public boolean test16(Object arg) { MyInterface vt = MyValue1.createWithFieldsInline(rI, rL); if (vt == arg || vt == (MyInterface)valueField1 || vt == interfaceField1 || vt == null ||