[K/N] Enable CMS GC by default for the new MM

Issue #KT-50713 Fixed
This commit is contained in:
Ilya Matveev
2022-01-19 19:59:45 +07:00
parent f835433221
commit 1e78036a1b
6 changed files with 9 additions and 4 deletions
@@ -87,7 +87,8 @@ internal enum class ThreadStateChecker(val compilerFlag: String?) {
internal enum class GCType(val compilerFlag: String?) {
UNSPECIFIED(null),
NOOP("-Xgc=noop"),
STMS("-Xgc=stms");
STMS("-Xgc=stms"),
CMS("-Xgc=cms");
override fun toString() = compilerFlag?.let { "($it)" }.orEmpty()
}