mirror of
https://github.com/openjdk/jdk.git
synced 2026-03-12 17:03:14 +00:00
8288669: compiler/vectorapi/VectorFPtoIntCastTest.java still fails with "IRViolationException: There were one or multiple IR rule failures."
Reviewed-by: thartmann, dcubed
This commit is contained in:
parent
9dc9a64fa4
commit
17aacde50f
@ -49,19 +49,22 @@ public class VectorFPtoIntCastTest {
|
||||
private static final VectorSpecies<Byte> bspec128 = ByteVector.SPECIES_128;
|
||||
private static final VectorSpecies<Byte> bspec64 = ByteVector.SPECIES_64;
|
||||
|
||||
private float [] float_arr;
|
||||
private double [] double_arr;
|
||||
private long [] long_arr;
|
||||
private int [] int_arr;
|
||||
private short [] short_arr;
|
||||
private byte [] byte_arr;
|
||||
private float[] float_arr;
|
||||
private double[] double_arr;
|
||||
private long[] long_arr;
|
||||
private int[] int_arr;
|
||||
private short[] short_arr;
|
||||
private byte[] byte_arr;
|
||||
|
||||
private FloatVector fvec256;
|
||||
private FloatVector fvec512;
|
||||
private DoubleVector dvec512;
|
||||
|
||||
public static void main(String args[]) {
|
||||
TestFramework.runWithFlags("--add-modules=jdk.incubator.vector");
|
||||
public static void main(String[] args) {
|
||||
TestFramework testFramework = new TestFramework();
|
||||
testFramework.setDefaultWarmup(5000)
|
||||
.addFlags("--add-modules=jdk.incubator.vector")
|
||||
.start();
|
||||
}
|
||||
|
||||
public VectorFPtoIntCastTest() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user