diff options
Diffstat (limited to 'math/w_scalbf_compat.c')
-rw-r--r-- | math/w_scalbf_compat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/math/w_scalbf_compat.c b/math/w_scalbf_compat.c index 2b96df0cbf..79798aef1e 100644 --- a/math/w_scalbf_compat.c +++ b/math/w_scalbf_compat.c @@ -22,6 +22,7 @@ #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT static float __attribute__ ((noinline)) sysv_scalbf (float x, float fn) @@ -40,15 +41,18 @@ sysv_scalbf (float x, float fn) return z; } +#endif /* Wrapper scalbf */ float __scalbf (float x, float fn) { +#if LIBM_SVID_COMPAT if (__glibc_unlikely (_LIB_VERSION == _SVID_)) return sysv_scalbf (x, fn); else +#endif { float z = __ieee754_scalbf (x, fn); |