Fix typo src/intrinsic/llvm.rs

This commit is contained in:
vuittont60 2024-01-09 10:53:11 +08:00
parent 4e8627cf89
commit f8e079a171
No known key found for this signature in database
GPG Key ID: A9EFD100F36387FD

View File

@ -262,7 +262,7 @@ pub fn adjust_intrinsic_arguments<'a, 'b, 'gcc, 'tcx>(builder: &Builder<'a, 'gcc
},
// NOTE: the LLVM intrinsic receives 3 floats, but the GCC builtin requires 3 vectors.
// FIXME: the intrinsics like _mm_mask_fmadd_sd should probably directly call the GCC
// instrinsic to avoid this.
// intrinsic to avoid this.
"__builtin_ia32_vfmaddss3_round" => {
let new_args = args.to_vec();
let arg1_type = gcc_func.get_param_type(0);