about summary refs log tree commit diff
path: root/math/s_fma.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_fma.c')
-rw-r--r--math/s_fma.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/math/s_fma.c b/math/s_fma.c
index 2dc5c5d2cb..33ec7d1300 100644
--- a/math/s_fma.c
+++ b/math/s_fma.c
@@ -17,8 +17,13 @@
    <https://www.gnu.org/licenses/>.  */
 
 #define NO_MATH_REDIRECT
+#define dfmal __hide_dfmal
+#define f32xfmaf64 __hide_f32xfmaf64
 #include <math.h>
+#undef dfmal
+#undef f32xfmaf64
 #include <libm-alias-double.h>
+#include <math-narrow-alias.h>
 
 double
 __fma (double x, double y, double z)
@@ -27,4 +32,5 @@ __fma (double x, double y, double z)
 }
 #ifndef __fma
 libm_alias_double (__fma, fma)
+libm_alias_double_narrow (__fma, fma)
 #endif