Fix implementation of vaddlvq_u8

This commit is contained in:
bjorn3 2025-03-20 13:54:08 +00:00
parent b9e67a2e28
commit 8fb99bcb10

View file

@ -253,7 +253,7 @@ pub(crate) fn codegen_aarch64_llvm_intrinsic_call<'tcx>(
}
let res = CValue::by_val(
fx.bcx.ins().uextend(types::I32, res_val),
fx.layout_of(fx.tcx.types.u32),
fx.layout_of(fx.tcx.types.i32),
);
ret.write_cvalue(fx, res);
}