This commit is contained in:
Folkert 2023-09-15 16:32:14 +02:00
parent 0b67ed8f2f
commit 133c03321a
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -1171,12 +1171,13 @@ impl Assembler<AArch64GeneralReg, AArch64FloatReg> for AArch64Assembler {
#[inline(always)] #[inline(always)]
fn movzx_reg_reg( fn movzx_reg_reg(
_buf: &mut Vec<'_, u8>, buf: &mut Vec<'_, u8>,
_input_width: RegisterWidth, input_width: RegisterWidth,
_dst: AArch64GeneralReg, dst: AArch64GeneralReg,
_src: AArch64GeneralReg, src: AArch64GeneralReg,
) { ) {
todo!("move with zero extension"); // moving with zero extension is the default in arm
Self::mov_reg_reg(buf, input_width, dst, src)
} }
#[inline(always)] #[inline(always)]