[ruby/mmtk] Set Immix as the default plan

https://github.com/ruby/mmtk/commit/e52b973611
This commit is contained in:
Peter Zhu 2025-02-10 13:40:16 -05:00 committed by git
parent 50469809b8
commit b74077c19e

View File

@ -93,7 +93,7 @@ fn mmtk_builder_default_parse_heap_mode(heap_min: usize, heap_max: usize) -> GCT
fn mmtk_builder_default_parse_plan() -> PlanSelector {
let plan_str = std::env::var("MMTK_PLAN")
.unwrap_or("MarkSweep".to_string());
.unwrap_or("Immix".to_string());
match plan_str.as_str() {
"NoGC" => PlanSelector::NoGC,