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:
parent
df2af1147f
commit
e8e1f72d8f
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue