summaryrefslogtreecommitdiff
path: root/yjit_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'yjit_core.c')
-rw-r--r--yjit_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit_core.c b/yjit_core.c
index 02f629d9ce..a3b52971fb 100644
--- a/yjit_core.c
+++ b/yjit_core.c
@@ -658,7 +658,7 @@ make_branch_entry(block_t *block, const ctx_t *src_ctx, branchgen_fn gen_fn)
branch_t *branch = calloc(1, sizeof(branch_t));
branch->block = block;
- branch->src_ctx = *src_ctx;
+ (void)src_ctx; // Unused for now
branch->gen_fn = gen_fn;
branch->shape = SHAPE_DEFAULT;