--- old/test/jdk/jdk/incubator/vector/benchmark/src/main/java/benchmark/crypto/ChaChaBench.java 2019-04-09 12:15:04.111482400 -0700 +++ new/test/jdk/jdk/incubator/vector/benchmark/src/main/java/benchmark/crypto/ChaChaBench.java 2019-04-09 12:15:03.544984100 -0700 @@ -81,7 +81,7 @@ private static final int[] STATE_CONSTANTS = new int[]{0x61707865, 0x3320646e, 0x79622d32, 0x6b206574}; - private final IntVector.IntSpecies intSpecies; + private final Vector.Species intSpecies; private final int numBlocks; private final Vector.Shuffle rot1; @@ -103,7 +103,7 @@ private final int[] state; public ChaChaVector(Vector.Shape shape) { - this.intSpecies = IntVector.species(shape); + this.intSpecies = Vector.Species.of(Integer.class, shape); this.numBlocks = intSpecies.length() / 4; this.rot1 = makeRotate(1);