diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-08-24 16:05:28 -0500 |
---|---|---|
committer | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-09-01 09:31:03 -0500 |
commit | ee8a49071cba845b2ee5060b0d4238f9534b5ee3 (patch) | |
tree | 7b15c9a6d0d64c04966a7ddf5bc23e0e57117a25 /math/Makefile | |
parent | 7b7c39450b3c4ab35b4960346e61d7b177ee728e (diff) | |
download | glibc-ee8a49071cba845b2ee5060b0d4238f9534b5ee3.tar.gz |
Make common nextdown implementation generic.
With the exception of those machines using the ldbl-opt in
an Implies file, this is a trivial transformation.
nextdownl is not subject to the non-trivial versioning rules
of the other generated functions, so to keep things simple,
it is handled as a one-off case in ldbl-opt to preserve the
existing behavior.
Diffstat (limited to 'math/Makefile')
-rw-r--r-- | math/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/Makefile b/math/Makefile index d4b6d98740..be6b8acf87 100644 --- a/math/Makefile +++ b/math/Makefile @@ -49,7 +49,7 @@ gen-libm-calls = cargF conjF cimagF crealF cabsF s_cacosF \ s_cacoshF s_ccosF s_ccoshF s_casinF s_csinF s_casinhF \ k_casinhF s_csinhF k_casinhF s_csinhF s_catanhF s_catanF \ s_ctanF s_ctanhF s_cexpF s_clogF s_cprojF s_csqrtF \ - s_cpowF s_clog10F s_fdimF + s_cpowF s_clog10F s_fdimF s_nextdownF libm-calls = \ e_acosF e_acoshF e_asinF e_atan2F e_atanhF e_coshF e_expF e_fmodF \ @@ -70,7 +70,7 @@ libm-calls = \ s_fmaF s_lrintF s_llrintF s_lroundF s_llroundF e_exp10F w_log2F \ s_issignalingF $(calls:s_%=m_%) x2y2m1F \ gamma_productF lgamma_negF lgamma_productF \ - s_nextupF s_nextdownF $(gen-libm-calls) + s_nextupF $(gen-libm-calls) libm-compat-calls-ldouble-yes = w_lgamma_compatl k_standardl libm-compat-calls = w_lgamma_compatf w_lgamma_compat k_standard k_standardf \ |