Skip to content

Commit 6afbbb1

Browse files
committed
ZJIT: Remove unnecessary empty lines
1 parent 02d5b84 commit 6afbbb1

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

zjit/src/backend/arm64/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ impl From<Opnd> for A64Opnd {
7878
Opnd::None => panic!(
7979
"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."
8080
),
81-
8281
}
8382
}
8483
}
@@ -809,7 +808,6 @@ impl Assembler
809808
}
810809
emit_load_value(cb, Assembler::SCRATCH0, dst_addr);
811810
br(cb, Assembler::SCRATCH0);
812-
813811
}
814812
*/
815813
} else {

zjit/src/backend/x86_64/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,6 @@ impl Assembler
605605
scratch
606606
}
607607
src @ (Opnd::None | Opnd::VReg { .. }) => panic!("Unexpected source operand during x86_emit: {src:?}")
608-
609608
};
610609
mov(cb, dest.into(), src);
611610
}

0 commit comments

Comments
 (0)