We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ae5748 commit 2196694Copy full SHA for 2196694
test/hotspot/jtreg/compiler/c2/TestMergeStores.java
@@ -340,8 +340,8 @@ public void runTests(RunInfo info) {
340
set_random(aL);
341
set_random(bL);
342
343
- offset1 = Math.abs(RANDOM.nextInt()) % 100;
344
- offset2 = Math.abs(RANDOM.nextInt()) % 100;
+ offset1 = RANDOM.nextInt(100);
+ offset2 = RANDOM.nextInt(100);
345
vB1 = (byte)RANDOM.nextInt();
346
vB2 = (byte)RANDOM.nextInt();
347
vS1 = (short)RANDOM.nextInt();
0 commit comments