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

Fix trailing spaces

This commit is contained in:
Maxime Chevalier-Boisvert 2021-03-10 11:18:17 -05:00 committed by Alan Wu
parent 4ccfbfe6fa
commit c6156e5113
2 changed files with 3 additions and 3 deletions

View file

@ -1027,7 +1027,7 @@ gen_branchif(jitstate_t* jit, ctx_t* ctx)
return YJIT_END_BLOCK;
}
void
void
gen_branchunless_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape)
{
switch (shape)

View file

@ -473,9 +473,9 @@ uint8_t* get_branch_target(
void gen_branch(
const ctx_t* src_ctx,
blockid_t target0,
blockid_t target0,
const ctx_t* ctx0,
blockid_t target1,
blockid_t target1,
const ctx_t* ctx1,
branchgen_fn gen_fn
)