From b7a3e2e71dc68ec56036f37ab5a1f94489436f96 Mon Sep 17 00:00:00 2001 From: Jemma Issroff Date: Tue, 31 Oct 2023 15:57:25 -0300 Subject: [PATCH] [PRISM] Remove unnecessary variable --- prism_compile.c | 1 - 1 file changed, 1 deletion(-) diff --git a/prism_compile.c b/prism_compile.c index 9f3bff7d23..e3243787f5 100644 --- a/prism_compile.c +++ b/prism_compile.c @@ -2258,7 +2258,6 @@ pm_compile_node(rb_iseq_t *iseq, const pm_node_t *node, LINK_ANCHOR *const ret, } case PM_FORWARDING_SUPER_NODE: { pm_forwarding_super_node_t *forwarding_super_node = (pm_forwarding_super_node_t *) node; - const rb_iseq_t *parent_block = ISEQ_COMPILE_DATA(iseq)->current_block; const rb_iseq_t *block = NULL; PM_PUTSELF; int flag = VM_CALL_ZSUPER | VM_CALL_SUPER | VM_CALL_FCALL;