From 0efcc5cea8b7ebc5fbe1dc75286f317293e89e1b Mon Sep 17 00:00:00 2001 From: Emanuel Peter Date: Tue, 16 Dec 2025 08:50:10 +0100 Subject: [PATCH] another IR rule fix --- .../jtreg/compiler/vectorization/TestVectorAlgorithms.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/hotspot/jtreg/compiler/vectorization/TestVectorAlgorithms.java b/test/hotspot/jtreg/compiler/vectorization/TestVectorAlgorithms.java index c148e893866..fe32d73b248 100644 --- a/test/hotspot/jtreg/compiler/vectorization/TestVectorAlgorithms.java +++ b/test/hotspot/jtreg/compiler/vectorization/TestVectorAlgorithms.java @@ -458,7 +458,7 @@ public class TestVectorAlgorithms { IRNode.VECTOR_TEST, "> 0", IRNode.VECTOR_LONG_TO_MASK, "> 0", IRNode.STORE_VECTOR_MASKED, "> 0"}, - applyIfCPUFeatureOr = {"avx", "true", "asimd", "true"}) + applyIfCPUFeature = {"avx", "true"}) public Object filterI_VectorAPI(int[] a, int[] r, int threshold) { return VectorAlgorithmsImpl.filterI_VectorAPI(a, r, threshold); }