Skip to content

Commit d6c86f0

Browse files
committed
Default to -H:-CompactingOldGen.
1 parent 4cb51af commit d6c86f0

File tree

1 file changed

+1
-1
lines changed
  • substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.core.genscavenge/src/com/oracle/svm/core/genscavenge/SerialGCOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public Integer getValue(OptionValues values) {
112112
/** Query these options only through an appropriate method. */
113113
public static class ConcealedOptions {
114114
@Option(help = "Collect old generation by compacting in-place instead of copying.", type = OptionType.Expert) //
115-
public static final HostedOptionKey<Boolean> CompactingOldGen = new HostedOptionKey<>(true, SerialGCOptions::validateCompactingOldGen);
115+
public static final HostedOptionKey<Boolean> CompactingOldGen = new HostedOptionKey<>(false, SerialGCOptions::validateCompactingOldGen);
116116

117117
@Option(help = "Determines if a remembered set is used, which is necessary for collecting the young and old generation independently.", type = OptionType.Expert) //
118118
public static final HostedOptionKey<Boolean> UseRememberedSet = new HostedOptionKey<>(true, SerialGCOptions::serialGCOnly);

0 commit comments

Comments
 (0)