We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65b77b1 commit b91fa3aCopy full SHA for b91fa3a
1 file changed
src/hotspot/share/gc/shared/gcArguments.cpp
@@ -57,8 +57,8 @@ void GCArguments::initialize() {
57
58
if (!FLAG_IS_DEFAULT(AllocateOldGenAt)) {
59
// CompressedOops not supported when AllocateOldGenAt is set.
60
- FLAG_SET_DEFAULT(UseCompressedOops, false);
61
- FLAG_SET_DEFAULT(UseCompressedClassPointers, false);
+ LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
+ LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
62
// When AllocateOldGenAt is set, we cannot use largepages for entire heap memory.
63
// Only young gen which is allocated in dram can use large pages, but we currently don't support that.
64
FLAG_SET_DEFAULT(UseLargePages, false);
0 commit comments