summaryrefslogtreecommitdiff
path: root/yjit_codegen.c
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2021-10-07 14:59:55 -0400
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:43 -0400
commit32b5125c5eb40422ef8a92a9886986a9ee4dc299 (patch)
tree1d5026aa28eb454d5cc580d90b3780f15c02e667 /yjit_codegen.c
parent35b37c5873d49b7e2ac2d406532635b0871c8dcf (diff)
else if style
Diffstat (limited to 'yjit_codegen.c')
-rw-r--r--yjit_codegen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/yjit_codegen.c b/yjit_codegen.c
index e3df5a5193..b3ab3e014f 100644
--- a/yjit_codegen.c
+++ b/yjit_codegen.c
@@ -3512,7 +3512,8 @@ gen_send_iseq(jitstate_t *jit, ctx_t *ctx, const struct rb_callinfo *ci, const r
// know every value was specified, we can just write the value 0.
kw_bits_shift = 1;
mov(cb, ctx_stack_opnd(ctx, -1), imm_opnd(INT2FIX(0)));
- } else if (argc == lead_num) {
+ }
+ else if (argc == lead_num) {
// Here we are calling a method that accepts keyword arguments
// (optional or required) but we're not passing any keyword
// arguments at this call site