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; return YJIT_END_BLOCK;
} }
void void
gen_branchunless_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape) gen_branchunless_branch(codeblock_t* cb, uint8_t* target0, uint8_t* target1, uint8_t shape)
{ {
switch (shape) switch (shape)

View File

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