8215898: Build broken on 32-bit after JDK-8211425

Reviewed-by: tschatzl
This commit is contained in:
Stefan Johansson 2018-12-22 15:47:10 +01:00
parent 65b77b109b
commit b91fa3a6c8

View File

@ -57,8 +57,8 @@ void GCArguments::initialize() {
if (!FLAG_IS_DEFAULT(AllocateOldGenAt)) {
// CompressedOops not supported when AllocateOldGenAt is set.
FLAG_SET_DEFAULT(UseCompressedOops, false);
FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
// When AllocateOldGenAt is set, we cannot use largepages for entire heap memory.
// Only young gen which is allocated in dram can use large pages, but we currently don't support that.
FLAG_SET_DEFAULT(UseLargePages, false);