mirror of
https://github.com/ruby/ruby.git
synced 2025-08-27 15:06:10 +02:00
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:
parent
86de48e9f6
commit
dbe5b0dcff
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue