diff options
| -rw-r--r-- | zjit/src/backend/arm64/mod.rs | 2 | ||||
| -rw-r--r-- | zjit/src/backend/x86_64/mod.rs | 1 |
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); } |
