8134856: Incorrect use of PLAB::min_size() in MaxPLABSizeBounds

Reviewed-by: jwilhelm, tbenson
This commit is contained in:
Thomas Schatzl 2015-09-02 14:00:46 +02:00
parent fbfed13ec2
commit d0bb38889d

View file

@ -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