We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a845ca7 commit c3eed20Copy full SHA for c3eed20
src/intrinsic/mod.rs
@@ -66,7 +66,7 @@ fn get_simple_intrinsic<'gcc, 'tcx>(
66
sym::log2f64 => "log2",
67
sym::fmaf32 => "fmaf",
68
sym::fmaf64 => "fma",
69
- // 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
70
sym::fmuladdf32 => "fmaf", // TODO: use gcc intrinsic analogous to llvm.fmuladd.f32
71
sym::fmuladdf64 => "fma", // TODO: use gcc intrinsic analogous to llvm.fmuladd.f64
72
sym::fabsf32 => "fabsf",
0 commit comments