@@ -5660,7 +5660,7 @@ fn gen_send_iseq(
5660
5660
exit_if_has_kwrest ( asm, iseq) ?;
5661
5661
exit_if_splat_and_ruby2_keywords ( asm, jit, flags) ?;
5662
5662
exit_if_has_rest_and_captured ( asm, iseq_has_rest, captured_opnd) ?;
5663
- exit_if_has_rest_and_send ( asm, iseq_has_rest, flags) ?;
5663
+ exit_if_has_rest_and_splat ( asm, iseq_has_rest, flags) ?;
5664
5664
exit_if_has_rest_and_supplying_kws ( asm, iseq_has_rest, iseq, supplying_kws) ?;
5665
5665
exit_if_supplying_kw_and_has_no_kw ( asm, supplying_kws, iseq) ?;
5666
5666
exit_if_supplying_kws_and_accept_no_kwargs ( asm, supplying_kws, iseq) ?;
@@ -6404,8 +6404,8 @@ fn exit_if_has_rest_and_captured(asm: &mut Assembler, iseq_has_rest: bool, captu
6404
6404
}
6405
6405
6406
6406
#[ must_use]
6407
- fn exit_if_has_rest_and_send ( asm : & mut Assembler , iseq_has_rest : bool , flags : u32 ) -> Option < ( ) > {
6408
- exit_if ( asm, iseq_has_rest && flags & VM_CALL_ARGS_SPLAT != 0 , Counter :: send_iseq_has_rest_and_send )
6407
+ fn exit_if_has_rest_and_splat ( asm : & mut Assembler , iseq_has_rest : bool , flags : u32 ) -> Option < ( ) > {
6408
+ exit_if ( asm, iseq_has_rest && flags & VM_CALL_ARGS_SPLAT != 0 , Counter :: send_iseq_has_rest_and_splat )
6409
6409
}
6410
6410
6411
6411
#[ must_use]
0 commit comments