Skip to content

Commit abce8f0

Browse files
committed
Fix obj_free candidate list
imemo_callinfo is an obj_free candidate. imemo_ast is deprecated.
1 parent 3888446 commit abce8f0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

mmtk_support.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -777,11 +777,14 @@ rb_mmtk_is_initial_obj_free_candidate(VALUE obj)
777777
return true;
778778
case T_IMEMO:
779779
switch (imemo_type(obj)) {
780-
case imemo_ment:
781-
case imemo_iseq:
780+
case imemo_ast:
781+
rb_bug("imemo_ast is obsolete");
782+
UNREACHABLE;
783+
case imemo_callinfo:
782784
case imemo_env:
785+
case imemo_iseq:
786+
case imemo_ment:
783787
case imemo_tmpbuf:
784-
case imemo_ast:
785788
// These imemos need obj_free.
786789
return true;
787790
default:

0 commit comments

Comments
 (0)