diff --git a/test/micro/org/openjdk/bench/jdk/incubator/vector/StoreMaskTrueCount.java b/test/micro/org/openjdk/bench/jdk/incubator/vector/StoreMaskTrueCount.java index 8857af260b8..372edd0cfb5 100644 --- a/test/micro/org/openjdk/bench/jdk/incubator/vector/StoreMaskTrueCount.java +++ b/test/micro/org/openjdk/bench/jdk/incubator/vector/StoreMaskTrueCount.java @@ -47,7 +47,7 @@ public class StoreMaskTrueCount { } @Benchmark - public static int testShort() { + public int testShort() { int res = 0; for (int i = 0; i < LENGTH; i += S_SPECIES.length()) { VectorMask m = VectorMask.fromArray(S_SPECIES, ba, i); @@ -58,7 +58,7 @@ public class StoreMaskTrueCount { } @Benchmark - public static int testInt() { + public int testInt() { int res = 0; for (int i = 0; i < LENGTH; i += I_SPECIES.length()) { VectorMask m = VectorMask.fromArray(I_SPECIES, ba, i); @@ -69,7 +69,7 @@ public class StoreMaskTrueCount { } @Benchmark - public static int testLong() { + public int testLong() { int res = 0; for (int i = 0; i < LENGTH; i += L_SPECIES.length()) { VectorMask m = VectorMask.fromArray(L_SPECIES, ba, i); @@ -78,4 +78,4 @@ public class StoreMaskTrueCount { return res; } -} \ No newline at end of file +}