mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8134856: Incorrect use of PLAB::min_size() in MaxPLABSizeBounds
Reviewed-by: jwilhelm, tbenson
This commit is contained in:
parent
fbfed13ec2
commit
d0bb38889d
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ static Flag::Error MaxPLABSizeBounds(const char* name, size_t value, bool verbos
|
|||
CommandLineError::print(verbose,
|
||||
"%s (" SIZE_FORMAT ") must be "
|
||||
"less than or equal to ergonomic PLAB maximum size (" SIZE_FORMAT ")\n",
|
||||
name, value, PLAB::min_size());
|
||||
name, value, PLAB::max_size());
|
||||
return Flag::VIOLATES_CONSTRAINT;
|
||||
}
|
||||
#endif // INCLUDE_ALL_GCS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue