--- old/test/jdk/jdk/incubator/vector/VectorArrays.java 2019-04-09 12:14:46.680912700 -0700 +++ new/test/jdk/jdk/incubator/vector/VectorArrays.java 2019-04-09 12:14:45.946689700 -0700 @@ -23,6 +23,7 @@ import jdk.incubator.vector.ByteVector; import jdk.incubator.vector.Vector; +import jdk.incubator.vector.Vector.Species; public class VectorArrays { static boolean equals(byte[] a, byte[] b) { @@ -54,12 +55,11 @@ } static int mismatch(byte[] a, byte[] b) { - ByteVector.ByteSpecies species = - ByteVector.species(Vector.Shape.S_256_BIT); + Species species = ByteVector.SPECIES_256; return mismatch(a, b, species); } - static int mismatch(byte[] a, byte[] b, ByteVector.ByteSpecies species) { + static int mismatch(byte[] a, byte[] b, Species species) { int length = Math.min(a.length, b.length); if (a == b) return -1;