mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Skip unnecessary mark_context if mrb->c == mrb->root_c.
This commit is contained in:
@@ -1076,7 +1076,9 @@ final_marking_phase(mrb_state *mrb, mrb_gc *gc)
|
||||
}
|
||||
mrb_gc_mark_gv(mrb);
|
||||
mark_context(mrb, mrb->c);
|
||||
mark_context(mrb, mrb->root_c);
|
||||
if (mrb->c != mrb->root_c) {
|
||||
mark_context(mrb, mrb->root_c);
|
||||
}
|
||||
mrb_gc_mark(mrb, (struct RBasic*)mrb->exc);
|
||||
gc_mark_gray_list(mrb, gc);
|
||||
mrb_assert(gc->gray_list == NULL);
|
||||
|
||||
Reference in New Issue
Block a user