8290730: compiler/vectorization/TestAutoVecIntMinMax.java failed with "IRViolationException: There were one or multiple IR rule failures."

Reviewed-by: jiefu, kvn, thartmann
This commit is contained in:
Bhavana Kilambi 2022-07-25 09:08:23 +00:00 committed by Tobias Hartmann
parent 228e8e94fe
commit 80dc6cebc9
2 changed files with 2 additions and 4 deletions

View File

@ -69,8 +69,6 @@ compiler/c2/Test8004741.java 8235801 generic-all
compiler/codecache/jmx/PoolsIndependenceTest.java 8264632 macosx-all
compiler/vectorization/TestAutoVecIntMinMax.java 8290730 generic-x64
#############################################################################
# :hotspot_gc

View File

@ -33,8 +33,8 @@ import jdk.test.lib.Utils;
* @summary Auto-vectorization enhancement for integer Math.max/Math.min operations
* @library /test/lib /
* @requires vm.compiler2.enabled
* @requires (os.simpleArch == "x64" & ((vm.cpu.features ~= ".*avx.*")
* | (vm.cpu.features ~= ".*sse4.*"))) | os.arch == "aarch64" | os.arch == "riscv64"
* @requires (os.simpleArch == "x64" & (vm.opt.UseSSE == "null" | vm.opt.UseSSE > 3))
* | os.arch == "aarch64" | os.arch == "riscv64"
* @run driver compiler.c2.irTests.TestAutoVecIntMinMax
*/