From 6afbbb11785e483c7dba2a803e611904d32ec01f Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Fri, 19 Sep 2025 15:50:15 -0700 Subject: ZJIT: Remove unnecessary empty lines --- zjit/src/backend/arm64/mod.rs | 2 -- zjit/src/backend/x86_64/mod.rs | 1 - 2 files changed, 3 deletions(-) diff --git a/zjit/src/backend/arm64/mod.rs b/zjit/src/backend/arm64/mod.rs index 8168f416d0..34e939957f 100644 --- a/zjit/src/backend/arm64/mod.rs +++ b/zjit/src/backend/arm64/mod.rs @@ -78,7 +78,6 @@ impl From for A64Opnd { Opnd::None => panic!( "Attempted to lower an Opnd::None. This often happens when an out operand was not allocated for an instruction because the output of the instruction was not used. Please ensure you are using the output." ), - } } } @@ -809,7 +808,6 @@ impl Assembler } emit_load_value(cb, Assembler::SCRATCH0, dst_addr); br(cb, Assembler::SCRATCH0); - } */ } else { diff --git a/zjit/src/backend/x86_64/mod.rs b/zjit/src/backend/x86_64/mod.rs index 86856461f1..d857c017dc 100644 --- a/zjit/src/backend/x86_64/mod.rs +++ b/zjit/src/backend/x86_64/mod.rs @@ -605,7 +605,6 @@ impl Assembler scratch } src @ (Opnd::None | Opnd::VReg { .. }) => panic!("Unexpected source operand during x86_emit: {src:?}") - }; mov(cb, dest.into(), src); } -- cgit v1.2.3