mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Try to fix MJIT symbol clash with cargo cult
This commit is contained in:
parent
0db85218aa
commit
da30f21ab5
1 changed files with 2 additions and 2 deletions
|
@ -2240,7 +2240,7 @@ rb_simple_iseq_p(const rb_iseq_t *iseq)
|
|||
iseq->body->param.flags.has_block == FALSE;
|
||||
}
|
||||
|
||||
bool
|
||||
MJIT_FUNC_EXPORTED bool
|
||||
rb_iseq_only_optparam_p(const rb_iseq_t *iseq)
|
||||
{
|
||||
return iseq->body->param.flags.has_opt == TRUE &&
|
||||
|
@ -2252,7 +2252,7 @@ rb_iseq_only_optparam_p(const rb_iseq_t *iseq)
|
|||
iseq->body->param.flags.has_block == FALSE;
|
||||
}
|
||||
|
||||
bool
|
||||
MJIT_FUNC_EXPORTED bool
|
||||
rb_iseq_only_kwparam_p(const rb_iseq_t *iseq)
|
||||
{
|
||||
return iseq->body->param.flags.has_opt == FALSE &&
|
||||
|
|
Loading…
Reference in a new issue