We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6fdba7 commit 2fb3a18Copy full SHA for 2fb3a18
libm/src/math/support/float_traits.rs
@@ -289,7 +289,7 @@ macro_rules! float_impl {
289
cfg_if! {
290
// fma is not yet available in `core`
291
if #[cfg(intrinsics_enabled)] {
292
- unsafe{ core::intrinsics::$fma_intrinsic(self, y, z) }
+ core::intrinsics::$fma_intrinsic(self, y, z)
293
} else {
294
super::super::$fma_fn(self, y, z)
295
}
0 commit comments