diff options
| author | acceptacross <csqcqs@gmail.com> | 2024-12-18 23:23:44 +0800 |
|---|---|---|
| committer | acceptacross <csqcqs@gmail.com> | 2024-12-18 23:23:44 +0800 |
| commit | 6734a04c0a6aff674011c9b4cb1c89cba2636c4d (patch) | |
| tree | 643fbc6e4fea11ab5702c3303fbf863f946a25d6 /compiler/rustc_codegen_gcc | |
| parent | 3378a5e084fa51c2e7f5c3f53b87e8ad89f1c517 (diff) | |
| download | rust-6734a04c0a6aff674011c9b4cb1c89cba2636c4d.tar.gz rust-6734a04c0a6aff674011c9b4cb1c89cba2636c4d.zip | |
chore: fix some typos
Signed-off-by: acceptacross <csqcqs@gmail.com>
Diffstat (limited to 'compiler/rustc_codegen_gcc')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/intrinsic/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/intrinsic/mod.rs b/compiler/rustc_codegen_gcc/src/intrinsic/mod.rs index 69326f409bb..78ec9741f57 100644 --- a/compiler/rustc_codegen_gcc/src/intrinsic/mod.rs +++ b/compiler/rustc_codegen_gcc/src/intrinsic/mod.rs @@ -66,7 +66,7 @@ fn get_simple_intrinsic<'gcc, 'tcx>( sym::log2f64 => "log2", sym::fmaf32 => "fmaf", sym::fmaf64 => "fma", - // FIXME: calling `fma` from libc without FMA target feature uses expensive sofware emulation + // FIXME: calling `fma` from libc without FMA target feature uses expensive software emulation sym::fmuladdf32 => "fmaf", // TODO: use gcc intrinsic analogous to llvm.fmuladd.f32 sym::fmuladdf64 => "fma", // TODO: use gcc intrinsic analogous to llvm.fmuladd.f64 sym::fabsf32 => "fabsf", |
