summaryrefslogtreecommitdiffstats
path: root/vendor/libm/src/math/k_expo2f.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/libm/src/math/k_expo2f.rs')
-rw-r--r--vendor/libm/src/math/k_expo2f.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/vendor/libm/src/math/k_expo2f.rs b/vendor/libm/src/math/k_expo2f.rs
index de8507772..fbd7b27d5 100644
--- a/vendor/libm/src/math/k_expo2f.rs
+++ b/vendor/libm/src/math/k_expo2f.rs
@@ -4,7 +4,6 @@ use super::expf;
const K: i32 = 235;
/* expf(x)/2 for x >= log(FLT_MAX), slightly better than 0.5f*expf(x/2)*expf(x/2) */
-#[inline]
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub(crate) fn k_expo2f(x: f32) -> f32 {
let k_ln2 = f32::from_bits(0x4322e3bc);