1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

remove redundant check.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2019-03-20 20:37:03 +00:00
parent df2af1147f
commit e8e1f72d8f

View file

@ -1787,7 +1787,7 @@ vm_callee_setup_arg(rb_execution_context_t *ec, struct rb_calling_info *calling,
!(METHOD_ENTRY_VISI(cc->me) == METHOD_VISI_PROTECTED))); !(METHOD_ENTRY_VISI(cc->me) == METHOD_VISI_PROTECTED)));
return 0; return 0;
} }
else if (rb_iseq_only_optparam_p(iseq) && !(ci->flag & VM_CALL_KW_SPLAT)) { else if (rb_iseq_only_optparam_p(iseq)) {
rb_control_frame_t *cfp = ec->cfp; rb_control_frame_t *cfp = ec->cfp;
CALLER_SETUP_ARG(cfp, calling, ci); /* splat arg */ CALLER_SETUP_ARG(cfp, calling, ci); /* splat arg */