Skip to content

Commit 2dfe458

Browse files
author
SendaoYan
committed
8369490: Remove unused Runinfo parameters in compiler/c2/gvn/TestBitCompressValueTransform.java
Reviewed-by: chagedorn, mhaessig
1 parent 7e29d29 commit 2dfe458

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

test/hotspot/jtreg/compiler/c2/gvn/TestBitCompressValueTransform.java

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public long test1(long value) {
7575
}
7676

7777
@Run(test = "test1")
78-
public void run1(RunInfo info) {
78+
public void run1() {
7979
long res = test1(field_L);
8080
Asserts.assertEQ(res, gold_L);
8181
}
@@ -88,7 +88,7 @@ public int test2(int value) {
8888
}
8989

9090
@Run(test = "test2")
91-
public void run2(RunInfo info) {
91+
public void run2() {
9292
int res = test2(field_I);
9393
Asserts.assertEQ(res, gold_I);
9494
}
@@ -105,7 +105,7 @@ public int test3(int value) {
105105
}
106106

107107
@Run(test = "test3")
108-
public void run3(RunInfo info) {
108+
public void run3() {
109109
int res = 0;
110110
for (int i = 1; i < 100; i++) {
111111
res |= test3(i);
@@ -125,7 +125,7 @@ public long test4(long value) {
125125
}
126126

127127
@Run(test = "test4")
128-
public void run4(RunInfo info) {
128+
public void run4() {
129129
long res = 0;
130130
for (long i = 1; i < 100; i++) {
131131
res |= test4(i);
@@ -143,7 +143,7 @@ public long test5(long value) {
143143
}
144144

145145
@Run(test = "test5")
146-
public void run5(RunInfo info) {
146+
public void run5() {
147147
long res = 0;
148148
for (int i = -100; i < 100; i++) {
149149
res |= test5((long)i);
@@ -161,7 +161,7 @@ public long test6(long value) {
161161
}
162162

163163
@Run(test = "test6")
164-
public void run6(RunInfo info) {
164+
public void run6() {
165165
long res = 0;
166166
for (int i = -100; i < 100; i++) {
167167
res |= test6((long)i);
@@ -180,7 +180,7 @@ public long test7(long value) {
180180
}
181181

182182
@Run(test = "test7")
183-
public void run7(RunInfo info) {
183+
public void run7() {
184184
long res = Long.MIN_VALUE;
185185
for (int i = -100; i < 100; i++) {
186186
res = Long.max(test7((long)i), res);
@@ -198,7 +198,7 @@ public int test8(int value) {
198198
}
199199

200200
@Run(test = "test8")
201-
public void run8(RunInfo info) {
201+
public void run8() {
202202
int res = 0;
203203
for (int i = -100; i < 100; i++) {
204204
res |= test8(i);
@@ -216,7 +216,7 @@ public int test9(int value) {
216216
}
217217

218218
@Run(test = "test9")
219-
public void run9(RunInfo info) {
219+
public void run9() {
220220
int res = 0;
221221
for (int i = -100; i < 100; i++) {
222222
res |= test9(i);
@@ -235,7 +235,7 @@ public int test10(int value) {
235235
}
236236

237237
@Run(test = "test10")
238-
public void run10(RunInfo info) {
238+
public void run10() {
239239
int res = Integer.MIN_VALUE;
240240
for (int i = -100; i < 100; i++) {
241241
res = Integer.max(test10(i), res);
@@ -252,7 +252,7 @@ public int test11(int value) {
252252
}
253253

254254
@Run(test = "test11")
255-
public void run11(RunInfo info) {
255+
public void run11() {
256256
int res = 0;
257257
for (int i = -100; i < 100; i++) {
258258
res |= test11(i);
@@ -269,7 +269,7 @@ public long test12(long value) {
269269
}
270270

271271
@Run(test = "test12")
272-
public void run12(RunInfo info) {
272+
public void run12() {
273273
long res = 0;
274274
for (int i = -100; i < 100; i++) {
275275
res |= test12(i);
@@ -286,7 +286,7 @@ public int test13(int value) {
286286
}
287287

288288
@Run(test = "test13")
289-
public void run13(RunInfo info) {
289+
public void run13() {
290290
int res = 0;
291291
for (int i = -100; i < 100; i++) {
292292
res |= test13(i);
@@ -303,7 +303,7 @@ public long test14(long value) {
303303
}
304304

305305
@Run(test = "test14")
306-
public void run14(RunInfo info) {
306+
public void run14() {
307307
long res = 0;
308308
for (int i = -100; i < 100; i++) {
309309
res |= test14(i);
@@ -320,7 +320,7 @@ public int test15(int src, int mask) {
320320
}
321321

322322
@Run (test = "test15")
323-
public void run15(RunInfo info) {
323+
public void run15() {
324324
int res = test15(0, 0);
325325
Asserts.assertEQ(0, res);
326326
}
@@ -395,7 +395,7 @@ public int test16(int src, int mask) {
395395
}
396396

397397
@Run (test = "test16")
398-
public void run16(RunInfo info) {
398+
public void run16() {
399399
int actual = 0;
400400
int expected = 0;
401401

@@ -479,7 +479,7 @@ public int test17(int src, int mask) {
479479
}
480480

481481
@Run (test = "test17")
482-
public void run17(RunInfo info) {
482+
public void run17() {
483483
int actual = 0;
484484
int expected = 0;
485485

@@ -563,7 +563,7 @@ public long test18(long src, long mask) {
563563
}
564564

565565
@Run (test = "test18")
566-
public void run18(RunInfo info) {
566+
public void run18() {
567567
long actual = 0;
568568
long expected = 0;
569569

@@ -647,7 +647,7 @@ public long test19(long src, long mask) {
647647
}
648648

649649
@Run (test = "test19")
650-
public void run19(RunInfo info) {
650+
public void run19() {
651651
long actual = 0;
652652
long expected = 0;
653653

0 commit comments

Comments
 (0)