Skip to content

Commit 16a4f02

Browse files
committed
8302150: Speed up compiler/codegen/Test7100757.java
Reviewed-by: kvn, thartmann
1 parent 17274c7 commit 16a4f02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/hotspot/jtreg/compiler/codegen/Test7100757.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -50,7 +50,7 @@ public static void main(String[] args) {
5050
Random rnd = Utils.getRandomInstance();
5151
long[] ra = new long[(NBITS+63)/64];
5252

53-
for(int l=0; l < 5000000; l++) {
53+
for(int l=0; l < 50_000; l++) {
5454

5555
for(int r = 0; r < ra.length; r++) {
5656
ra[r] = rnd.nextLong();

0 commit comments

Comments
 (0)