Skip to content

Commit

Permalink
Define 'StressSeed' option as 'uint' rather than 'uintx'
Browse files Browse the repository at this point in the history
  • Loading branch information
robcasloz committed Sep 22, 2020
1 parent 73abfb2 commit e113185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/share/opto/c2_globals.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
product(bool, GenerateStressSeed, false, DIAGNOSTIC, \
"Generate random seed for IGVN stress testing") \
\
product(uintx, StressSeed, 0, DIAGNOSTIC, \
product(uint, StressSeed, 0, DIAGNOSTIC, \
"Random seed for IGVN stress testing") \
range(0, max_uintx) \
range(0, max_juint) \
\
develop(bool, StressMethodHandleLinkerInlining, false, \
"Stress inlining through method handle linkers") \
Expand Down

0 comments on commit e113185

Please sign in to comment.