Skip to content

Commit 8fb99bc

Browse files
committed
Fix implementation of vaddlvq_u8
1 parent b9e67a2 commit 8fb99bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/intrinsics/llvm_aarch64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ pub(crate) fn codegen_aarch64_llvm_intrinsic_call<'tcx>(
253253
}
254254
let res = CValue::by_val(
255255
fx.bcx.ins().uextend(types::I32, res_val),
256-
fx.layout_of(fx.tcx.types.u32),
256+
fx.layout_of(fx.tcx.types.i32),
257257
);
258258
ret.write_cvalue(fx, res);
259259
}

0 commit comments

Comments
 (0)