Adjust brace nesting
This commit is contained in:
parent
1faeb44dfc
commit
c4e893ceb5
10
vm.c
10
vm.c
@ -1439,12 +1439,10 @@ invoke_iseq_block_from_c(rb_execution_context_t *ec, const struct rb_captured_bl
|
|||||||
|
|
||||||
stack_check(ec);
|
stack_check(ec);
|
||||||
|
|
||||||
#if VM_ARGC_STACK_MAX < 1
|
if (UNLIKELY(argc > VM_ARGC_STACK_MAX) &&
|
||||||
/* Skip ruby array for potential autosplat case */
|
(VM_ARGC_STACK_MAX >= 1 ||
|
||||||
if (UNLIKELY(argc > VM_ARGC_STACK_MAX && (argc != 1 || is_lambda))) {
|
/* Skip ruby array for potential autosplat case */
|
||||||
#else
|
(argc != 1 || is_lambda))) {
|
||||||
if (UNLIKELY(argc > VM_ARGC_STACK_MAX)) {
|
|
||||||
#endif
|
|
||||||
use_argv = vm_argv_ruby_array(av, argv, &flags, &argc, kw_splat);
|
use_argv = vm_argv_ruby_array(av, argv, &flags, &argc, kw_splat);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user