1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

style: align pointer "*" to the right

This commit is contained in:
Alan Wu 2021-09-29 14:58:01 -04:00
parent 5b68d14c2f
commit a10cf74e5c
9 changed files with 515 additions and 515 deletions

View file

@ -89,7 +89,7 @@ jit_get_opcode(jitstate_t* jit)
// Get the index of the next instruction // Get the index of the next instruction
static uint32_t static uint32_t
jit_next_idx(jitstate_t* jit) jit_next_insn_idx(jitstate_t *jit)
{ {
return jit->insn_idx + insn_len(jit_get_opcode(jit)); return jit->insn_idx + insn_len(jit_get_opcode(jit));
} }