YJIT: Fix a typo in a counter name

I added `invokeblock_iseq_arg0_args_splat` counter but it wasn't used
because of a typo.

Related to https://github.com/ruby/ruby/pull/7234
This commit is contained in:
Takashi Kokubun 2023-02-13 16:58:44 -08:00
parent 86de48e9f6
commit dbe5b0dcff

View File

@ -5443,7 +5443,7 @@ fn gen_send_iseq(
// If block_arg0_splat, we still need side exits after this, but // If block_arg0_splat, we still need side exits after this, but
// doing push_splat_args here disallows it. So bail out. // doing push_splat_args here disallows it. So bail out.
if block_arg0_splat { if block_arg0_splat {
gen_counter_incr!(asm, invokeblock_iseq_arg0_has_kw); gen_counter_incr!(asm, invokeblock_iseq_arg0_args_splat);
return CantCompile; return CantCompile;
} }