diff options
| author | vuittont60 <81072379+vuittont60@users.noreply.github.com> | 2024-01-09 10:53:11 +0800 |
|---|---|---|
| committer | vuittont60 <81072379+vuittont60@users.noreply.github.com> | 2024-01-09 10:53:11 +0800 |
| commit | f8e079a1714c43d81b96bfa2af67833eeec6eae6 (patch) | |
| tree | b83a80e239c2ff0ab3fe99eae07ca81c0a1eb13c | |
| parent | 4e8627cf8982e16c000f5b36e0cf505337ce467f (diff) | |
| download | rust-f8e079a1714c43d81b96bfa2af67833eeec6eae6.tar.gz rust-f8e079a1714c43d81b96bfa2af67833eeec6eae6.zip | |
Fix typo src/intrinsic/llvm.rs
| -rw-r--r-- | src/intrinsic/llvm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intrinsic/llvm.rs b/src/intrinsic/llvm.rs index 35eb4a11005..0d2ce20c654 100644 --- a/src/intrinsic/llvm.rs +++ b/src/intrinsic/llvm.rs @@ -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); |
