From 8938f146abd49411b0d20b48675c16d61f58927c Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Fri, 31 Mar 2023 15:19:02 -0400 Subject: YJIT: Remove unused variable [ci skip] --- yjit/src/codegen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yjit/src') diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index f754e4915d..b18c855b7a 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -4836,7 +4836,7 @@ fn gen_push_frame( // For an iseq call PC may be None, in which case we will not set PC and will allow jitted code // to set it as necessary. - let _pc = if let Some(pc) = frame.pc { + if let Some(pc) = frame.pc { asm.mov(cfp_opnd(RUBY_OFFSET_CFP_PC), pc.into()); }; asm.mov(cfp_opnd(RUBY_OFFSET_CFP_BP), sp); -- cgit v1.2.1