about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorJacob Pratt <jacob@jhpratt.dev>2024-12-18 21:38:10 -0500
committerGitHub <noreply@github.com>2024-12-18 21:38:10 -0500
commit0391770c0710cd3d5fcc645c160af6c9cab8a99a (patch)
treef6d17a6b931e09eb64419fca1da65bc73f4d777d /compiler/rustc_codegen_gcc
parent871c2d81a9fbea2b993efc10279a6f73ca9ac986 (diff)
parent6734a04c0a6aff674011c9b4cb1c89cba2636c4d (diff)
downloadrust-0391770c0710cd3d5fcc645c160af6c9cab8a99a.tar.gz
rust-0391770c0710cd3d5fcc645c160af6c9cab8a99a.zip
Rollup merge of #134473 - acceptacross:master, r=compiler-errors
chore: fix some typos
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/intrinsic/mod.rs2
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",