From c6156e511338450db2f39abc45e1ee1b5508bd6b Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Wed, 10 Mar 2021 11:18:17 -0500 Subject: [PATCH] Fix trailing spaces --- yjit_codegen.c | 2 +- yjit_core.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yjit_codegen.c b/yjit_codegen.c index 0877517850..3ece2b9fe8 100644 --- a/yjit_codegen.c +++ b/yjit_codegen.c @@ -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) diff --git a/yjit_core.c b/yjit_core.c index 307b28f64d..4640853d57 100644 --- a/yjit_core.c +++ b/yjit_core.c @@ -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 )