diff --git a/src/proc.c b/src/proc.c index 100e04150..bbc4a2b14 100644 --- a/src/proc.c +++ b/src/proc.c @@ -52,15 +52,7 @@ mrb_proc_new(mrb_state *mrb, const mrb_irep *irep) struct RClass *tc = NULL; if (ci->proc) { - if (ci->proc->color != MRB_GC_RED) { - tc = MRB_PROC_TARGET_CLASS(ci->proc); - } - else { - tc = mrb_vm_ci_target_class(ci); - if (tc && tc->tt == MRB_TT_ICLASS) { - tc = tc->c; - } - } + tc = MRB_PROC_TARGET_CLASS(ci->proc); } if (tc == NULL) { tc = mrb_vm_ci_target_class(ci);