summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2025-09-19 15:50:15 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2025-09-19 15:50:15 -0700
commit6afbbb11785e483c7dba2a803e611904d32ec01f (patch)
tree3387b6dcad45c0f2420aa1ed4e447d7af3fc64b3
parent02d5b8443a0f77bf498d29c0121e035f4deeaa27 (diff)
ZJIT: Remove unnecessary empty lines
-rw-r--r--zjit/src/backend/arm64/mod.rs2
-rw-r--r--zjit/src/backend/x86_64/mod.rs1
2 files changed, 0 insertions, 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<Opnd> 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);
}