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
Родитель 86de48e9f6
Коммит dbe5b0dcff
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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