summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
Diffstat (limited to 'math')
-rw-r--r--math/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile
index b3f49edf48..eb8a7a57b8 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -46,7 +46,9 @@ libm-calls = e_acos e_acosh e_asin e_atan2 e_atanh e_cosh e_exp e_fmod \
libm-routines = $(libm-support) $(libm-calls) \
$(patsubst %_rf,%f_r,$(libm-calls:=f)) \
$(long-m-$(long-double-fcts))
-#long-m-yes = $(patsubst %_rl,%l_r,$(libm-calls:=l)) # not ready yet
+#long-m-yes = $(long-m-routines) # uncomment this when code is ready
+long-m-routines = $(patsubst %_rl,%l_r,$(libm-calls:=l)) # not ready yet
+elided-routines = $(long-m-routines)
# These functions are in libc instead of libm because __printf_fp
@@ -55,6 +57,7 @@ libm-routines = $(libm-support) $(libm-calls) \
calls = s_isinf s_isnan
routines = $(calls) $(calls:=f) $(long-c-$(long-double-fcts))
long-c-yes = $(calls:=l)
+elided-routines += $(long-c-yes)
include ../Rules