public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 4/4] Automatic part III: Fix filename in Makefile
  2016-12-21 11:22 [PATCH 0/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
@ 2016-12-21 11:22 ` Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 3/4] Automatic part II: Fix filename in #includes Gabriel F. T. Gomes
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Gabriel F. T. Gomes @ 2016-12-21 11:22 UTC (permalink / raw)
  To: libc-alpha

---
 sysdeps/powerpc/nofpu/Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sysdeps/powerpc/nofpu/Makefile b/sysdeps/powerpc/nofpu/Makefile
index 99761ef..35517b6 100644
--- a/sysdeps/powerpc/nofpu/Makefile
+++ b/sysdeps/powerpc/nofpu/Makefile
@@ -24,9 +24,9 @@ CFLAGS-s_clogl.c += -fno-builtin-fabsl
 CFLAGS-s_clog10l.c += -fno-builtin-fabsl
 CFLAGS-s_csinl.c += -fno-builtin-fabsl
 CFLAGS-s_csqrtl.c += -fno-builtin-fabsl
-CFLAGS-w_acosl.c += -fno-builtin-fabsl
-CFLAGS-w_asinl.c += -fno-builtin-fabsl
-CFLAGS-w_atanhl.c += -fno-builtin-fabsl
-CFLAGS-w_j0l.c += -fno-builtin-fabsl
-CFLAGS-w_j1l.c += -fno-builtin-fabsl
+CFLAGS-w_acosl_compat.c += -fno-builtin-fabsl
+CFLAGS-w_asinl_compat.c += -fno-builtin-fabsl
+CFLAGS-w_atanhl_compat.c += -fno-builtin-fabsl
+CFLAGS-w_j0l_compat.c += -fno-builtin-fabsl
+CFLAGS-w_j1l_compat.c += -fno-builtin-fabsl
 endif
-- 
2.4.11

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 0/4] Move wrappers to libm-compat-calls-auto
@ 2016-12-21 11:22 Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 4/4] Automatic part III: Fix filename in Makefile Gabriel F. T. Gomes
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Gabriel F. T. Gomes @ 2016-12-21 11:22 UTC (permalink / raw)
  To: libc-alpha

I split the following four patches to ease review.  I'll squash them
before commit.

The first patch moves the wrappers from libm-calls to
libm-compat-calls-auto in math/Makefile. I did this by hand.

The second patch renames the wrappes in math/ and in
sysdeps/ieee754/ldbl-opt/ by adding the suffix "_compat" to the
filenames.  No changes have been made to the files at this point.

The remaining two patches fix the filenames in #includes and Makefile.

Patches 2, 3, and 4 have been generated with the following commands:

  for i in w_acos w_acosh w_asin w_atan2 w_atanh w_cosh w_exp10	\
  	 w_exp2 w_fmod w_hypot w_j0 w_j1 w_jn w_log10 w_log2	\
  	 w_log w_pow w_remainder w_sinh w_sqrt w_tgamma w_scalb
  do
    git mv math/${i}.c math/${i}_compat.c
    git mv math/${i}f.c math/${i}f_compat.c
    git mv math/${i}l.c math/${i}l_compat.c
    if [ "${i}" != "w_exp2" ]
    then
      git mv sysdeps/ieee754/ldbl-opt/${i}.c sysdeps/ieee754/ldbl-opt/${i}_compat.c
      git mv sysdeps/ieee754/ldbl-opt/${i}l.c sysdeps/ieee754/ldbl-opt/${i}l_compat.c
      sed -e "s/${i}\.c/${i}_compat.c/" -i sysdeps/ieee754/ldbl-opt/${i}_compat.c
      sed -e "s/${i}l\.c/${i}l_compat.c/" -i sysdeps/ieee754/ldbl-opt/${i}l_compat.c
    fi
    sed -e "s/${i}l\.c/${i}l_compat.c/" -i sysdeps/powerpc/nofpu/Makefile
  done

Since w_lgamma_compat already exists, I'll move w_lgamma* files in a
separate patch to ease review.

Gabriel F. T. Gomes (4):
  Move wrappers to libm-compat-calls-auto
  Automatic part I: Add suffix to filename
  Automatic part II: Fix filename in #includes
  Automatic part III: Fix filename in Makefile

 math/Makefile                                          | 18 +++++++++++++-----
 math/{w_acos.c => w_acos_compat.c}                     |  0
 math/{w_acosf.c => w_acosf_compat.c}                   |  0
 math/{w_acosh.c => w_acosh_compat.c}                   |  0
 math/{w_acoshf.c => w_acoshf_compat.c}                 |  0
 math/{w_acoshl.c => w_acoshl_compat.c}                 |  0
 math/{w_acosl.c => w_acosl_compat.c}                   |  0
 math/{w_asin.c => w_asin_compat.c}                     |  0
 math/{w_asinf.c => w_asinf_compat.c}                   |  0
 math/{w_asinl.c => w_asinl_compat.c}                   |  0
 math/{w_atan2.c => w_atan2_compat.c}                   |  0
 math/{w_atan2f.c => w_atan2f_compat.c}                 |  0
 math/{w_atan2l.c => w_atan2l_compat.c}                 |  0
 math/{w_atanh.c => w_atanh_compat.c}                   |  0
 math/{w_atanhf.c => w_atanhf_compat.c}                 |  0
 math/{w_atanhl.c => w_atanhl_compat.c}                 |  0
 math/{w_cosh.c => w_cosh_compat.c}                     |  0
 math/{w_coshf.c => w_coshf_compat.c}                   |  0
 math/{w_coshl.c => w_coshl_compat.c}                   |  0
 math/{w_exp10.c => w_exp10_compat.c}                   |  0
 math/{w_exp10f.c => w_exp10f_compat.c}                 |  0
 math/{w_exp10l.c => w_exp10l_compat.c}                 |  0
 math/{w_exp2.c => w_exp2_compat.c}                     |  0
 math/{w_exp2f.c => w_exp2f_compat.c}                   |  0
 math/{w_exp2l.c => w_exp2l_compat.c}                   |  0
 math/{w_fmod.c => w_fmod_compat.c}                     |  0
 math/{w_fmodf.c => w_fmodf_compat.c}                   |  0
 math/{w_fmodl.c => w_fmodl_compat.c}                   |  0
 math/{w_hypot.c => w_hypot_compat.c}                   |  0
 math/{w_hypotf.c => w_hypotf_compat.c}                 |  0
 math/{w_hypotl.c => w_hypotl_compat.c}                 |  0
 math/{w_j0.c => w_j0_compat.c}                         |  0
 math/{w_j0f.c => w_j0f_compat.c}                       |  0
 math/{w_j0l.c => w_j0l_compat.c}                       |  0
 math/{w_j1.c => w_j1_compat.c}                         |  0
 math/{w_j1f.c => w_j1f_compat.c}                       |  0
 math/{w_j1l.c => w_j1l_compat.c}                       |  0
 math/{w_jn.c => w_jn_compat.c}                         |  0
 math/{w_jnf.c => w_jnf_compat.c}                       |  0
 math/{w_jnl.c => w_jnl_compat.c}                       |  0
 math/{w_log10.c => w_log10_compat.c}                   |  0
 math/{w_log10f.c => w_log10f_compat.c}                 |  0
 math/{w_log10l.c => w_log10l_compat.c}                 |  0
 math/{w_log2.c => w_log2_compat.c}                     |  0
 math/{w_log2f.c => w_log2f_compat.c}                   |  0
 math/{w_log2l.c => w_log2l_compat.c}                   |  0
 math/{w_log.c => w_log_compat.c}                       |  0
 math/{w_logf.c => w_logf_compat.c}                     |  0
 math/{w_logl.c => w_logl_compat.c}                     |  0
 math/{w_pow.c => w_pow_compat.c}                       |  0
 math/{w_powf.c => w_powf_compat.c}                     |  0
 math/{w_powl.c => w_powl_compat.c}                     |  0
 math/{w_remainder.c => w_remainder_compat.c}           |  0
 math/{w_remainderf.c => w_remainderf_compat.c}         |  0
 math/{w_remainderl.c => w_remainderl_compat.c}         |  0
 math/{w_scalb.c => w_scalb_compat.c}                   |  0
 math/{w_scalbf.c => w_scalbf_compat.c}                 |  0
 math/{w_scalbl.c => w_scalbl_compat.c}                 |  0
 math/{w_sinh.c => w_sinh_compat.c}                     |  0
 math/{w_sinhf.c => w_sinhf_compat.c}                   |  0
 math/{w_sinhl.c => w_sinhl_compat.c}                   |  0
 math/{w_sqrt.c => w_sqrt_compat.c}                     |  0
 math/{w_sqrtf.c => w_sqrtf_compat.c}                   |  0
 math/{w_sqrtl.c => w_sqrtl_compat.c}                   |  0
 math/{w_tgamma.c => w_tgamma_compat.c}                 |  0
 math/{w_tgammaf.c => w_tgammaf_compat.c}               |  0
 math/{w_tgammal.c => w_tgammal_compat.c}               |  0
 sysdeps/ieee754/ldbl-opt/{w_acos.c => w_acos_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_acosh.c => w_acosh_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_acoshl.c => w_acoshl_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_acosl.c => w_acosl_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_asin.c => w_asin_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_asinl.c => w_asinl_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_atan2.c => w_atan2_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_atan2l.c => w_atan2l_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_atanh.c => w_atanh_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_atanhl.c => w_atanhl_compat.c} |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_cosh.c => w_cosh_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_coshl.c => w_coshl_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_exp10.c => w_exp10_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_exp10l.c => w_exp10l_compat.c} |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_fmod.c => w_fmod_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_fmodl.c => w_fmodl_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_hypot.c => w_hypot_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_hypotl.c => w_hypotl_compat.c} |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_j0.c => w_j0_compat.c}     |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_j0l.c => w_j0l_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_j1.c => w_j1_compat.c}     |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_j1l.c => w_j1l_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_jn.c => w_jn_compat.c}     |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_jnl.c => w_jnl_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_log10.c => w_log10_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_log10l.c => w_log10l_compat.c} |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_log2.c => w_log2_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_log2l.c => w_log2l_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_log.c => w_log_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_logl.c => w_logl_compat.c} |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_pow.c => w_pow_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_powl.c => w_powl_compat.c} |  2 +-
 .../ldbl-opt/{w_remainder.c => w_remainder_compat.c}   |  2 +-
 .../ldbl-opt/{w_remainderl.c => w_remainderl_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_scalb.c => w_scalb_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_scalbl.c => w_scalbl_compat.c} |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_sinh.c => w_sinh_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_sinhl.c => w_sinhl_compat.c}   |  2 +-
 sysdeps/ieee754/ldbl-opt/{w_sqrt.c => w_sqrt_compat.c} |  2 +-
 .../ieee754/ldbl-opt/{w_sqrtl.c => w_sqrtl_compat.c}   |  2 +-
 .../ieee754/ldbl-opt/{w_tgamma.c => w_tgamma_compat.c} |  2 +-
 .../ldbl-opt/{w_tgammal.c => w_tgammal_compat.c}       |  2 +-
 sysdeps/powerpc/nofpu/Makefile                         | 10 +++++-----
 110 files changed, 60 insertions(+), 52 deletions(-)
 rename math/{w_acos.c => w_acos_compat.c} (100%)
 rename math/{w_acosf.c => w_acosf_compat.c} (100%)
 rename math/{w_acosh.c => w_acosh_compat.c} (100%)
 rename math/{w_acoshf.c => w_acoshf_compat.c} (100%)
 rename math/{w_acoshl.c => w_acoshl_compat.c} (100%)
 rename math/{w_acosl.c => w_acosl_compat.c} (100%)
 rename math/{w_asin.c => w_asin_compat.c} (100%)
 rename math/{w_asinf.c => w_asinf_compat.c} (100%)
 rename math/{w_asinl.c => w_asinl_compat.c} (100%)
 rename math/{w_atan2.c => w_atan2_compat.c} (100%)
 rename math/{w_atan2f.c => w_atan2f_compat.c} (100%)
 rename math/{w_atan2l.c => w_atan2l_compat.c} (100%)
 rename math/{w_atanh.c => w_atanh_compat.c} (100%)
 rename math/{w_atanhf.c => w_atanhf_compat.c} (100%)
 rename math/{w_atanhl.c => w_atanhl_compat.c} (100%)
 rename math/{w_cosh.c => w_cosh_compat.c} (100%)
 rename math/{w_coshf.c => w_coshf_compat.c} (100%)
 rename math/{w_coshl.c => w_coshl_compat.c} (100%)
 rename math/{w_exp10.c => w_exp10_compat.c} (100%)
 rename math/{w_exp10f.c => w_exp10f_compat.c} (100%)
 rename math/{w_exp10l.c => w_exp10l_compat.c} (100%)
 rename math/{w_exp2.c => w_exp2_compat.c} (100%)
 rename math/{w_exp2f.c => w_exp2f_compat.c} (100%)
 rename math/{w_exp2l.c => w_exp2l_compat.c} (100%)
 rename math/{w_fmod.c => w_fmod_compat.c} (100%)
 rename math/{w_fmodf.c => w_fmodf_compat.c} (100%)
 rename math/{w_fmodl.c => w_fmodl_compat.c} (100%)
 rename math/{w_hypot.c => w_hypot_compat.c} (100%)
 rename math/{w_hypotf.c => w_hypotf_compat.c} (100%)
 rename math/{w_hypotl.c => w_hypotl_compat.c} (100%)
 rename math/{w_j0.c => w_j0_compat.c} (100%)
 rename math/{w_j0f.c => w_j0f_compat.c} (100%)
 rename math/{w_j0l.c => w_j0l_compat.c} (100%)
 rename math/{w_j1.c => w_j1_compat.c} (100%)
 rename math/{w_j1f.c => w_j1f_compat.c} (100%)
 rename math/{w_j1l.c => w_j1l_compat.c} (100%)
 rename math/{w_jn.c => w_jn_compat.c} (100%)
 rename math/{w_jnf.c => w_jnf_compat.c} (100%)
 rename math/{w_jnl.c => w_jnl_compat.c} (100%)
 rename math/{w_log10.c => w_log10_compat.c} (100%)
 rename math/{w_log10f.c => w_log10f_compat.c} (100%)
 rename math/{w_log10l.c => w_log10l_compat.c} (100%)
 rename math/{w_log2.c => w_log2_compat.c} (100%)
 rename math/{w_log2f.c => w_log2f_compat.c} (100%)
 rename math/{w_log2l.c => w_log2l_compat.c} (100%)
 rename math/{w_log.c => w_log_compat.c} (100%)
 rename math/{w_logf.c => w_logf_compat.c} (100%)
 rename math/{w_logl.c => w_logl_compat.c} (100%)
 rename math/{w_pow.c => w_pow_compat.c} (100%)
 rename math/{w_powf.c => w_powf_compat.c} (100%)
 rename math/{w_powl.c => w_powl_compat.c} (100%)
 rename math/{w_remainder.c => w_remainder_compat.c} (100%)
 rename math/{w_remainderf.c => w_remainderf_compat.c} (100%)
 rename math/{w_remainderl.c => w_remainderl_compat.c} (100%)
 rename math/{w_scalb.c => w_scalb_compat.c} (100%)
 rename math/{w_scalbf.c => w_scalbf_compat.c} (100%)
 rename math/{w_scalbl.c => w_scalbl_compat.c} (100%)
 rename math/{w_sinh.c => w_sinh_compat.c} (100%)
 rename math/{w_sinhf.c => w_sinhf_compat.c} (100%)
 rename math/{w_sinhl.c => w_sinhl_compat.c} (100%)
 rename math/{w_sqrt.c => w_sqrt_compat.c} (100%)
 rename math/{w_sqrtf.c => w_sqrtf_compat.c} (100%)
 rename math/{w_sqrtl.c => w_sqrtl_compat.c} (100%)
 rename math/{w_tgamma.c => w_tgamma_compat.c} (100%)
 rename math/{w_tgammaf.c => w_tgammaf_compat.c} (100%)
 rename math/{w_tgammal.c => w_tgammal_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_acos.c => w_acos_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_acosh.c => w_acosh_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_acoshl.c => w_acoshl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_acosl.c => w_acosl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_asin.c => w_asin_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_asinl.c => w_asinl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_atan2.c => w_atan2_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_atan2l.c => w_atan2l_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_atanh.c => w_atanh_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_atanhl.c => w_atanhl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_cosh.c => w_cosh_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_coshl.c => w_coshl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_exp10.c => w_exp10_compat.c} (84%)
 rename sysdeps/ieee754/ldbl-opt/{w_exp10l.c => w_exp10l_compat.c} (82%)
 rename sysdeps/ieee754/ldbl-opt/{w_fmod.c => w_fmod_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_fmodl.c => w_fmodl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_hypot.c => w_hypot_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_hypotl.c => w_hypotl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_j0.c => w_j0_compat.c} (84%)
 rename sysdeps/ieee754/ldbl-opt/{w_j0l.c => w_j0l_compat.c} (82%)
 rename sysdeps/ieee754/ldbl-opt/{w_j1.c => w_j1_compat.c} (84%)
 rename sysdeps/ieee754/ldbl-opt/{w_j1l.c => w_j1l_compat.c} (82%)
 rename sysdeps/ieee754/ldbl-opt/{w_jn.c => w_jn_compat.c} (84%)
 rename sysdeps/ieee754/ldbl-opt/{w_jnl.c => w_jnl_compat.c} (82%)
 rename sysdeps/ieee754/ldbl-opt/{w_log10.c => w_log10_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_log10l.c => w_log10l_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_log2.c => w_log2_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_log2l.c => w_log2l_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_log.c => w_log_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_logl.c => w_logl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_pow.c => w_pow_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_powl.c => w_powl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_remainder.c => w_remainder_compat.c} (85%)
 rename sysdeps/ieee754/ldbl-opt/{w_remainderl.c => w_remainderl_compat.c} (84%)
 rename sysdeps/ieee754/ldbl-opt/{w_scalb.c => w_scalb_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_scalbl.c => w_scalbl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_sinh.c => w_sinh_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_sinhl.c => w_sinhl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_sqrt.c => w_sqrt_compat.c} (79%)
 rename sysdeps/ieee754/ldbl-opt/{w_sqrtl.c => w_sqrtl_compat.c} (77%)
 rename sysdeps/ieee754/ldbl-opt/{w_tgamma.c => w_tgamma_compat.c} (78%)
 rename sysdeps/ieee754/ldbl-opt/{w_tgammal.c => w_tgammal_compat.c} (76%)

-- 
2.4.11

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 1/4] Move wrappers to libm-compat-calls-auto
  2016-12-21 11:22 [PATCH 0/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 4/4] Automatic part III: Fix filename in Makefile Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 3/4] Automatic part II: Fix filename in #includes Gabriel F. T. Gomes
@ 2016-12-21 11:22 ` Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 2/4] Automatic part I: Add suffix to filename Gabriel F. T. Gomes
  2016-12-21 12:46 ` [PATCH 0/4] Move wrappers to libm-compat-calls-auto Joseph Myers
  4 siblings, 0 replies; 8+ messages in thread
From: Gabriel F. T. Gomes @ 2016-12-21 11:22 UTC (permalink / raw)
  To: libc-alpha

This commit moves one step towards the deprecation of wrappers that
use _LIB_VERSION / matherr / __kernel_standard functionality, by
adding the suffix '_compat' to their filenames and adjusting Makefiles
and #includes accordingly.

New template wrappers that do not use such functionality will be added
by future patches and will be used by the float128 wrappers.

2016-12-19  Gabriel F. T. Gomes  <gftg@linux.vnet.ibm.com>

	* math/Makefile (libm-calls): Move wrappers...
	(libm-compat-call-auto): Here.
	* sysdeps/powerpc/nofpu/Makefile: Add suffix ("_compat") to
	the filenames of the wrappers that have been renamed.

	* math/w_acos.c: Add suffix ("_compat") to filename.
	* math/w_acosf.c: Likewise.
	* math/w_acosh.c: Likewise.
	* math/w_acoshf.c: Likewise.
	* math/w_acoshl.c: Likewise.
	* math/w_acosl.c: Likewise.
	* math/w_asin.c: Likewise.
	* math/w_asinf.c: Likewise.
	* math/w_asinl.c: Likewise.
	* math/w_atan2.c: Likewise.
	* math/w_atan2f.c: Likewise.
	* math/w_atan2l.c: Likewise.
	* math/w_atanh.c: Likewise.
	* math/w_atanhf.c: Likewise.
	* math/w_atanhl.c: Likewise.
	* math/w_cosh.c: Likewise.
	* math/w_coshf.c: Likewise.
	* math/w_coshl.c: Likewise.
	* math/w_exp10.c: Likewise.
	* math/w_exp10f.c: Likewise.
	* math/w_exp10l.c: Likewise.
	* math/w_exp2.c: Likewise.
	* math/w_exp2f.c: Likewise.
	* math/w_exp2l.c: Likewise.
	* math/w_fmod.c: Likewise.
	* math/w_fmodf.c: Likewise.
	* math/w_fmodl.c: Likewise.
	* math/w_hypot.c: Likewise.
	* math/w_hypotf.c: Likewise.
	* math/w_hypotl.c: Likewise.
	* math/w_j0.c: Likewise.
	* math/w_j0f.c: Likewise.
	* math/w_j0l.c: Likewise.
	* math/w_j1.c: Likewise.
	* math/w_j1f.c: Likewise.
	* math/w_j1l.c: Likewise.
	* math/w_jn.c: Likewise.
	* math/w_jnf.c: Likewise.
	* math/w_jnl.c: Likewise.
	* math/w_log.c: Likewise.
	* math/w_log10.c: Likewise.
	* math/w_log10f.c: Likewise.
	* math/w_log10l.c: Likewise.
	* math/w_log2.c: Likewise.
	* math/w_log2f.c: Likewise.
	* math/w_log2l.c: Likewise.
	* math/w_logf.c: Likewise.
	* math/w_logl.c: Likewise.
	* math/w_pow.c: Likewise.
	* math/w_powf.c: Likewise.
	* math/w_powl.c: Likewise.
	* math/w_remainder.c: Likewise.
	* math/w_remainderf.c: Likewise.
	* math/w_remainderl.c: Likewise.
	* math/w_scalb.c: Likewise.
	* math/w_scalbf.c: Likewise.
	* math/w_scalbl.c: Likewise.
	* math/w_sinh.c: Likewise.
	* math/w_sinhf.c: Likewise.
	* math/w_sinhl.c: Likewise.
	* math/w_sqrt.c: Likewise.
	* math/w_sqrtf.c: Likewise.
	* math/w_sqrtl.c: Likewise.
	* math/w_tgamma.c: Likewise.
	* math/w_tgammaf.c: Likewise.
	* math/w_tgammal.c: Likewise.

	* math/w_acos_compat.c: New file copied from above.
	* math/w_acosf_compat.c: Likewise.
	* math/w_acosh_compat.c: Likewise.
	* math/w_acoshf_compat.c: Likewise.
	* math/w_acoshl_compat.c: Likewise.
	* math/w_acosl_compat.c: Likewise.
	* math/w_asin_compat.c: Likewise.
	* math/w_asinf_compat.c: Likewise.
	* math/w_asinl_compat.c: Likewise.
	* math/w_atan2_compat.c: Likewise.
	* math/w_atan2f_compat.c: Likewise.
	* math/w_atan2l_compat.c: Likewise.
	* math/w_atanh_compat.c: Likewise.
	* math/w_atanhf_compat.c: Likewise.
	* math/w_atanhl_compat.c: Likewise.
	* math/w_cosh_compat.c: Likewise.
	* math/w_coshf_compat.c: Likewise.
	* math/w_coshl_compat.c: Likewise.
	* math/w_exp10_compat.c: Likewise.
	* math/w_exp10f_compat.c: Likewise.
	* math/w_exp10l_compat.c: Likewise.
	* math/w_exp2_compat.c: Likewise.
	* math/w_exp2f_compat.c: Likewise.
	* math/w_exp2l_compat.c: Likewise.
	* math/w_fmod_compat.c: Likewise.
	* math/w_fmodf_compat.c: Likewise.
	* math/w_fmodl_compat.c: Likewise.
	* math/w_hypot_compat.c: Likewise.
	* math/w_hypotf_compat.c: Likewise.
	* math/w_hypotl_compat.c: Likewise.
	* math/w_j0_compat.c: Likewise.
	* math/w_j0f_compat.c: Likewise.
	* math/w_j0l_compat.c: Likewise.
	* math/w_j1_compat.c: Likewise.
	* math/w_j1f_compat.c: Likewise.
	* math/w_j1l_compat.c: Likewise.
	* math/w_jn_compat.c: Likewise.
	* math/w_jnf_compat.c: Likewise.
	* math/w_jnl_compat.c: Likewise.
	* math/w_log10_compat.c: Likewise.
	* math/w_log10f_compat.c: Likewise.
	* math/w_log10l_compat.c: Likewise.
	* math/w_log2_compat.c: Likewise.
	* math/w_log2f_compat.c: Likewise.
	* math/w_log2l_compat.c: Likewise.
	* math/w_log_compat.c: Likewise.
	* math/w_logf_compat.c: Likewise.
	* math/w_logl_compat.c: Likewise.
	* math/w_pow_compat.c: Likewise.
	* math/w_powf_compat.c: Likewise.
	* math/w_powl_compat.c: Likewise.
	* math/w_remainder_compat.c: Likewise.
	* math/w_remainderf_compat.c: Likewise.
	* math/w_remainderl_compat.c: Likewise.
	* math/w_scalb_compat.c: Likewise.
	* math/w_scalbf_compat.c: Likewise.
	* math/w_scalbl_compat.c: Likewise.
	* math/w_sinh_compat.c: Likewise.
	* math/w_sinhf_compat.c: Likewise.
	* math/w_sinhl_compat.c: Likewise.
	* math/w_sqrt_compat.c: Likewise.
	* math/w_sqrtf_compat.c: Likewise.
	* math/w_sqrtl_compat.c: Likewise.
	* math/w_tgamma_compat.c: Likewise.
	* math/w_tgammaf_compat.c: Likewise.
	* math/w_tgammal_compat.c: Likewise.

	* sysdeps/ieee754/ldbl-opt/w_acos.c: Add suffix ("_compat") to
	filename
	* sysdeps/ieee754/ldbl-opt/w_acosh.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_acoshl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_acosl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_asin.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_asinl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atan2.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atan2l.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atanh.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atanhl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_cosh.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_coshl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_exp10.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_exp10l.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_fmod.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_fmodl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_hypot.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_hypotl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j0.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j0l.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j1.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j1l.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_jn.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_jnl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log10.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log10l.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log2.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log2l.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_logl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_pow.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_powl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_remainder.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_remainderl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_scalb.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_scalbl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sinh.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sinhl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sqrt.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sqrtl.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_tgamma.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_tgammal.c: Likewise.

	* sysdeps/ieee754/ldbl-opt/w_acos_compat.c: New file copied
	from above and adjusted for the new filenames in math dir.
	* sysdeps/ieee754/ldbl-opt/w_acosh_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_asin_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atan2_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atanh_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_cosh_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_exp10_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_fmod_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_hypot_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j0_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j1_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_jn_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log10_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log2_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_log_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_pow_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_remainder_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_scalb_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sinh_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c: Likewise.
	* sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
---
 math/Makefile | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/math/Makefile b/math/Makefile
index db6ea29..01d0025 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -65,18 +65,25 @@ libm-calls =								  \
 	s_ceilF s_cosF s_erfF s_expm1F s_fabsF				  \
 	s_floorF s_log1pF s_logbF				  \
 	s_nextafterF s_nexttowardF s_rintF s_scalblnF			  \
-	s_significandF s_sinF s_tanF s_tanhF w_acosF w_acoshF w_asinF	  \
-	w_atan2F w_atanhF w_coshF w_expF w_exp2F w_exp10F w_fmodF	  \
-	w_tgammaF w_hypotF w_j0F w_j1F w_jnF w_lgammaF w_lgammaF_r	  \
-	w_logF w_log10F w_powF w_remainderF w_scalbF w_sinhF w_sqrtF	  \
+	s_significandF s_sinF s_tanF s_tanhF				  \
+	w_expF								  \
+	w_lgammaF w_lgammaF_r						  \
 	s_fpclassifyF s_truncF						  \
 	s_remquoF e_log2F e_exp2F s_roundF s_nearbyintF s_sincosF	  \
-	s_fmaF s_lrintF s_llrintF s_lroundF s_llroundF e_exp10F w_log2F	  \
+	s_fmaF s_lrintF s_llrintF s_lroundF s_llroundF e_exp10F		  \
 	s_issignalingF $(calls:s_%=m_%) x2y2m1F				  \
 	gamma_productF lgamma_negF lgamma_productF			  \
 	s_nextupF s_totalorderF s_totalordermagF s_getpayloadF		  \
 	s_setpayloadF s_setpayloadsigF $(gen-libm-calls)
 
+libm-compat-calls-auto =						\
+	w_acosF_compat w_acoshF_compat w_asinF_compat w_atan2F_compat	\
+	w_atanhF_compat w_coshF_compat w_exp2F_compat w_exp10F_compat	\
+	w_fmodF_compat w_hypotF_compat w_j0F_compat w_j1F_compat	\
+	w_jnF_compat w_log2F_compat w_log10F_compat w_logF_compat	\
+	w_powF_compat w_remainderF_compat w_scalbF_compat		\
+	w_sinhF_compat w_sqrtF_compat w_tgammaF_compat
+
 libm-compat-calls-ldouble-yes = w_lgamma_compatl k_standardl
 libm-compat-calls = w_lgamma_compatf w_lgamma_compat k_standard k_standardf \
 		    $(libm-compat-calls-ldouble-$(long-double-fcts))
@@ -115,6 +122,7 @@ type-float-routines := k_rem_pio2f
 type-foreach = $(foreach t,$(types),$(subst F,$(type-$(t)-suffix),$(1)))
 
 libm-routines = $(strip $(libm-support) $(libm-compat-calls)		\
+			$(call type-foreach, $(libm-compat-calls-auto))	\
 			$(call type-foreach, $(libm-calls))		\
 			$(foreach t, $(types), $(type-$(t)-routines))) 	\
 
-- 
2.4.11

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 3/4] Automatic part II: Fix filename in #includes
  2016-12-21 11:22 [PATCH 0/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 4/4] Automatic part III: Fix filename in Makefile Gabriel F. T. Gomes
@ 2016-12-21 11:22 ` Gabriel F. T. Gomes
  2016-12-21 11:22 ` [PATCH 1/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Gabriel F. T. Gomes @ 2016-12-21 11:22 UTC (permalink / raw)
  To: libc-alpha

---
 sysdeps/ieee754/ldbl-opt/w_acos_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_acosh_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_acosl_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_asin_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_asinl_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_atan2_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_atanh_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_cosh_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_coshl_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_exp10_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_fmod_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_hypot_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_j0_compat.c         | 2 +-
 sysdeps/ieee754/ldbl-opt/w_j0l_compat.c        | 2 +-
 sysdeps/ieee754/ldbl-opt/w_j1_compat.c         | 2 +-
 sysdeps/ieee754/ldbl-opt/w_j1l_compat.c        | 2 +-
 sysdeps/ieee754/ldbl-opt/w_jn_compat.c         | 2 +-
 sysdeps/ieee754/ldbl-opt/w_jnl_compat.c        | 2 +-
 sysdeps/ieee754/ldbl-opt/w_log10_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_log10l_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_log2_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_log2l_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_log_compat.c        | 2 +-
 sysdeps/ieee754/ldbl-opt/w_logl_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_pow_compat.c        | 2 +-
 sysdeps/ieee754/ldbl-opt/w_powl_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_remainder_compat.c  | 2 +-
 sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c | 2 +-
 sysdeps/ieee754/ldbl-opt/w_scalb_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_sinh_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c       | 2 +-
 sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c      | 2 +-
 sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c     | 2 +-
 sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c    | 2 +-
 42 files changed, 42 insertions(+), 42 deletions(-)

diff --git a/sysdeps/ieee754/ldbl-opt/w_acos_compat.c b/sysdeps/ieee754/ldbl-opt/w_acos_compat.c
index 2934041..1e6d1b3 100644
--- a/sysdeps/ieee754/ldbl-opt/w_acos_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_acos_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_acos.c>
+#include <math/w_acos_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __acos, acosl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_acosh_compat.c b/sysdeps/ieee754/ldbl-opt/w_acosh_compat.c
index 7f7fa14..40da339 100644
--- a/sysdeps/ieee754/ldbl-opt/w_acosh_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_acosh_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_acosh.c>
+#include <math/w_acosh_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __acosh, acoshl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c b/sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c
index 6243c2a..df4338d 100644
--- a/sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_acoshl.c>
+#include <math/w_acoshl_compat.c>
 long_double_symbol (libm, __acoshl, acoshl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_acosl_compat.c b/sysdeps/ieee754/ldbl-opt/w_acosl_compat.c
index 8b6e890..5efc990 100644
--- a/sysdeps/ieee754/ldbl-opt/w_acosl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_acosl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_acosl.c>
+#include <math/w_acosl_compat.c>
 long_double_symbol (libm, __acosl, acosl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_asin_compat.c b/sysdeps/ieee754/ldbl-opt/w_asin_compat.c
index 5e1d70f..1c52cc2 100644
--- a/sysdeps/ieee754/ldbl-opt/w_asin_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_asin_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_asin.c>
+#include <math/w_asin_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __asin, asinl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_asinl_compat.c b/sysdeps/ieee754/ldbl-opt/w_asinl_compat.c
index a58a224..087fab2 100644
--- a/sysdeps/ieee754/ldbl-opt/w_asinl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_asinl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_asinl.c>
+#include <math/w_asinl_compat.c>
 long_double_symbol (libm, __asinl, asinl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_atan2_compat.c b/sysdeps/ieee754/ldbl-opt/w_atan2_compat.c
index f1d1501..d3f7964 100644
--- a/sysdeps/ieee754/ldbl-opt/w_atan2_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_atan2_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_atan2.c>
+#include <math/w_atan2_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __atan2, atan2l, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c b/sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c
index 01431ef..6b12209 100644
--- a/sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_atan2l.c>
+#include <math/w_atan2l_compat.c>
 long_double_symbol (libm, __atan2l, atan2l);
diff --git a/sysdeps/ieee754/ldbl-opt/w_atanh_compat.c b/sysdeps/ieee754/ldbl-opt/w_atanh_compat.c
index b4cab87..e15ef1f 100644
--- a/sysdeps/ieee754/ldbl-opt/w_atanh_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_atanh_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_atanh.c>
+#include <math/w_atanh_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __atanh, atanhl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c b/sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c
index 0dbc114..49bae1e 100644
--- a/sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_atanhl.c>
+#include <math/w_atanhl_compat.c>
 long_double_symbol (libm, __atanhl, atanhl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_cosh_compat.c b/sysdeps/ieee754/ldbl-opt/w_cosh_compat.c
index a6f56cf..af29735 100644
--- a/sysdeps/ieee754/ldbl-opt/w_cosh_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_cosh_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_cosh.c>
+#include <math/w_cosh_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __cosh, coshl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_coshl_compat.c b/sysdeps/ieee754/ldbl-opt/w_coshl_compat.c
index 8c7dccb..a880877 100644
--- a/sysdeps/ieee754/ldbl-opt/w_coshl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_coshl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_coshl.c>
+#include <math/w_coshl_compat.c>
 long_double_symbol (libm, __coshl, coshl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_exp10_compat.c b/sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
index 990c48e..142a70b 100644
--- a/sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_exp10.c>
+#include <math/w_exp10_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
 compat_symbol (libm, __exp10, exp10l, GLIBC_2_1);
 compat_symbol (libm, __pow10, pow10l, GLIBC_2_1);
diff --git a/sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c b/sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c
index e06dfb5..8f2ccd3 100644
--- a/sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c
@@ -1,6 +1,6 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_exp10l.c>
+#include <math/w_exp10l_compat.c>
 long_double_symbol (libm, __exp10l, exp10l);
 long_double_symbol (libm, __pow10l, pow10l);
diff --git a/sysdeps/ieee754/ldbl-opt/w_fmod_compat.c b/sysdeps/ieee754/ldbl-opt/w_fmod_compat.c
index 81ad505..9280d39 100644
--- a/sysdeps/ieee754/ldbl-opt/w_fmod_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_fmod_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_fmod.c>
+#include <math/w_fmod_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __fmod, fmodl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c b/sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c
index 2a534a3..88fe0ac 100644
--- a/sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_fmodl.c>
+#include <math/w_fmodl_compat.c>
 long_double_symbol (libm, __fmodl, fmodl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_hypot_compat.c b/sysdeps/ieee754/ldbl-opt/w_hypot_compat.c
index e1cf1ff..b3979ff 100644
--- a/sysdeps/ieee754/ldbl-opt/w_hypot_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_hypot_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_hypot.c>
+#include <math/w_hypot_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __hypot, hypotl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c b/sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c
index 6c46bd4..68e3997 100644
--- a/sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_hypotl.c>
+#include <math/w_hypotl_compat.c>
 long_double_symbol (libm, __hypotl, hypotl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_j0_compat.c b/sysdeps/ieee754/ldbl-opt/w_j0_compat.c
index 5c78aff..45b4d14 100644
--- a/sysdeps/ieee754/ldbl-opt/w_j0_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_j0_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_j0.c>
+#include <math/w_j0_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, j0, j0l, GLIBC_2_0);
 compat_symbol (libm, y0, y0l, GLIBC_2_0);
diff --git a/sysdeps/ieee754/ldbl-opt/w_j0l_compat.c b/sysdeps/ieee754/ldbl-opt/w_j0l_compat.c
index 767a1bc..9050657 100644
--- a/sysdeps/ieee754/ldbl-opt/w_j0l_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_j0l_compat.c
@@ -1,6 +1,6 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_j0l.c>
+#include <math/w_j0l_compat.c>
 long_double_symbol (libm, __j0l, j0l);
 long_double_symbol (libm, __y0l, y0l);
diff --git a/sysdeps/ieee754/ldbl-opt/w_j1_compat.c b/sysdeps/ieee754/ldbl-opt/w_j1_compat.c
index ed3dbc0..1071c8f 100644
--- a/sysdeps/ieee754/ldbl-opt/w_j1_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_j1_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_j1.c>
+#include <math/w_j1_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, j1, j1l, GLIBC_2_0);
 compat_symbol (libm, y1, y1l, GLIBC_2_0);
diff --git a/sysdeps/ieee754/ldbl-opt/w_j1l_compat.c b/sysdeps/ieee754/ldbl-opt/w_j1l_compat.c
index 946c364..4ed9e2d 100644
--- a/sysdeps/ieee754/ldbl-opt/w_j1l_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_j1l_compat.c
@@ -1,6 +1,6 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_j1l.c>
+#include <math/w_j1l_compat.c>
 long_double_symbol (libm, __j1l, j1l);
 long_double_symbol (libm, __y1l, y1l);
diff --git a/sysdeps/ieee754/ldbl-opt/w_jn_compat.c b/sysdeps/ieee754/ldbl-opt/w_jn_compat.c
index 7a7e0d4..be29a36 100644
--- a/sysdeps/ieee754/ldbl-opt/w_jn_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_jn_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_jn.c>
+#include <math/w_jn_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, jn, jnl, GLIBC_2_0);
 compat_symbol (libm, yn, ynl, GLIBC_2_0);
diff --git a/sysdeps/ieee754/ldbl-opt/w_jnl_compat.c b/sysdeps/ieee754/ldbl-opt/w_jnl_compat.c
index 5219543..d22ee54 100644
--- a/sysdeps/ieee754/ldbl-opt/w_jnl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_jnl_compat.c
@@ -1,6 +1,6 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_jnl.c>
+#include <math/w_jnl_compat.c>
 long_double_symbol (libm, __jnl, jnl);
 long_double_symbol (libm, __ynl, ynl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_log10_compat.c b/sysdeps/ieee754/ldbl-opt/w_log10_compat.c
index 74e7168..5ec6a2b 100644
--- a/sysdeps/ieee754/ldbl-opt/w_log10_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_log10_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_log10.c>
+#include <math/w_log10_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __log10, log10l, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_log10l_compat.c b/sysdeps/ieee754/ldbl-opt/w_log10l_compat.c
index 9c936e3..17de3e7 100644
--- a/sysdeps/ieee754/ldbl-opt/w_log10l_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_log10l_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_log10l.c>
+#include <math/w_log10l_compat.c>
 long_double_symbol (libm, __log10l, log10l);
diff --git a/sysdeps/ieee754/ldbl-opt/w_log2_compat.c b/sysdeps/ieee754/ldbl-opt/w_log2_compat.c
index 9b9b45b..dffd2c1 100644
--- a/sysdeps/ieee754/ldbl-opt/w_log2_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_log2_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_log2.c>
+#include <math/w_log2_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
 compat_symbol (libm, __log2, log2l, GLIBC_2_1);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_log2l_compat.c b/sysdeps/ieee754/ldbl-opt/w_log2l_compat.c
index c859682..3c5e734 100644
--- a/sysdeps/ieee754/ldbl-opt/w_log2l_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_log2l_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_log2l.c>
+#include <math/w_log2l_compat.c>
 long_double_symbol (libm, __log2l, log2l);
diff --git a/sysdeps/ieee754/ldbl-opt/w_log_compat.c b/sysdeps/ieee754/ldbl-opt/w_log_compat.c
index bde1e31..d2a2bca 100644
--- a/sysdeps/ieee754/ldbl-opt/w_log_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_log_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_log.c>
+#include <math/w_log_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __log, logl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_logl_compat.c b/sysdeps/ieee754/ldbl-opt/w_logl_compat.c
index c2354a0..2b55842 100644
--- a/sysdeps/ieee754/ldbl-opt/w_logl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_logl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_logl.c>
+#include <math/w_logl_compat.c>
 long_double_symbol (libm, __logl, logl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_pow_compat.c b/sysdeps/ieee754/ldbl-opt/w_pow_compat.c
index 2d98fb9..c2a7942 100644
--- a/sysdeps/ieee754/ldbl-opt/w_pow_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_pow_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_pow.c>
+#include <math/w_pow_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __pow, powl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_powl_compat.c b/sysdeps/ieee754/ldbl-opt/w_powl_compat.c
index 85b8927..1897cf1 100644
--- a/sysdeps/ieee754/ldbl-opt/w_powl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_powl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_powl.c>
+#include <math/w_powl_compat.c>
 long_double_symbol (libm, __powl, powl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_remainder_compat.c b/sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
index dfa7b7f..c823dcb 100644
--- a/sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_remainder.c>
+#include <math/w_remainder_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __remainder, remainderl, GLIBC_2_0);
 strong_alias (__remainder, __drem)
diff --git a/sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c b/sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
index 7a344b7..b2ce5c9 100644
--- a/sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
@@ -1,7 +1,7 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_remainderl.c>
+#include <math/w_remainderl_compat.c>
 long_double_symbol (libm, __remainderl, remainderl);
 strong_alias (__remainderl, __dreml)
 long_double_symbol (libm, __dreml, dreml);
diff --git a/sysdeps/ieee754/ldbl-opt/w_scalb_compat.c b/sysdeps/ieee754/ldbl-opt/w_scalb_compat.c
index e2ac601..f6d53a5 100644
--- a/sysdeps/ieee754/ldbl-opt/w_scalb_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_scalb_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_scalb.c>
+#include <math/w_scalb_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __scalb, scalbl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c b/sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c
index f3d3901..c8feb65 100644
--- a/sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_scalbl.c>
+#include <math/w_scalbl_compat.c>
 long_double_symbol (libm, __scalbl, scalbl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_sinh_compat.c b/sysdeps/ieee754/ldbl-opt/w_sinh_compat.c
index a5400b5..b47182c 100644
--- a/sysdeps/ieee754/ldbl-opt/w_sinh_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_sinh_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_sinh.c>
+#include <math/w_sinh_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __sinh, sinhl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c b/sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c
index b94f4ec..305ed82 100644
--- a/sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_sinhl.c>
+#include <math/w_sinhl_compat.c>
 long_double_symbol (libm, __sinhl, sinhl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c b/sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c
index ca2ba06..355d1c2 100644
--- a/sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_sqrt.c>
+#include <math/w_sqrt_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)
 compat_symbol (libm, __sqrt, sqrtl, GLIBC_2_0);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c b/sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c
index 609f5bf..1e4526f 100644
--- a/sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_sqrtl.c>
+#include <math/w_sqrtl_compat.c>
 long_double_symbol (libm, __sqrtl, sqrtl);
diff --git a/sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c b/sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c
index cce9f34..082ce8a 100644
--- a/sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
-#include <math/w_tgamma.c>
+#include <math/w_tgamma_compat.c>
 #if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
 compat_symbol (libm, __tgamma, tgammal, GLIBC_2_1);
 #endif
diff --git a/sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c b/sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c
index c3c511d..aaf5403 100644
--- a/sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c
+++ b/sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c
@@ -1,5 +1,5 @@
 #include <math_ldbl_opt.h>
 #undef weak_alias
 #define weak_alias(n,a)
-#include <math/w_tgammal.c>
+#include <math/w_tgammal_compat.c>
 long_double_symbol (libm, __tgammal, tgammal);
-- 
2.4.11

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 2/4] Automatic part I: Add suffix to filename
  2016-12-21 11:22 [PATCH 0/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
                   ` (2 preceding siblings ...)
  2016-12-21 11:22 ` [PATCH 1/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
@ 2016-12-21 11:22 ` Gabriel F. T. Gomes
  2016-12-21 12:46 ` [PATCH 0/4] Move wrappers to libm-compat-calls-auto Joseph Myers
  4 siblings, 0 replies; 8+ messages in thread
From: Gabriel F. T. Gomes @ 2016-12-21 11:22 UTC (permalink / raw)
  To: libc-alpha

---
 math/{w_acos.c => w_acos_compat.c}                                 | 0
 math/{w_acosf.c => w_acosf_compat.c}                               | 0
 math/{w_acosh.c => w_acosh_compat.c}                               | 0
 math/{w_acoshf.c => w_acoshf_compat.c}                             | 0
 math/{w_acoshl.c => w_acoshl_compat.c}                             | 0
 math/{w_acosl.c => w_acosl_compat.c}                               | 0
 math/{w_asin.c => w_asin_compat.c}                                 | 0
 math/{w_asinf.c => w_asinf_compat.c}                               | 0
 math/{w_asinl.c => w_asinl_compat.c}                               | 0
 math/{w_atan2.c => w_atan2_compat.c}                               | 0
 math/{w_atan2f.c => w_atan2f_compat.c}                             | 0
 math/{w_atan2l.c => w_atan2l_compat.c}                             | 0
 math/{w_atanh.c => w_atanh_compat.c}                               | 0
 math/{w_atanhf.c => w_atanhf_compat.c}                             | 0
 math/{w_atanhl.c => w_atanhl_compat.c}                             | 0
 math/{w_cosh.c => w_cosh_compat.c}                                 | 0
 math/{w_coshf.c => w_coshf_compat.c}                               | 0
 math/{w_coshl.c => w_coshl_compat.c}                               | 0
 math/{w_exp10.c => w_exp10_compat.c}                               | 0
 math/{w_exp10f.c => w_exp10f_compat.c}                             | 0
 math/{w_exp10l.c => w_exp10l_compat.c}                             | 0
 math/{w_exp2.c => w_exp2_compat.c}                                 | 0
 math/{w_exp2f.c => w_exp2f_compat.c}                               | 0
 math/{w_exp2l.c => w_exp2l_compat.c}                               | 0
 math/{w_fmod.c => w_fmod_compat.c}                                 | 0
 math/{w_fmodf.c => w_fmodf_compat.c}                               | 0
 math/{w_fmodl.c => w_fmodl_compat.c}                               | 0
 math/{w_hypot.c => w_hypot_compat.c}                               | 0
 math/{w_hypotf.c => w_hypotf_compat.c}                             | 0
 math/{w_hypotl.c => w_hypotl_compat.c}                             | 0
 math/{w_j0.c => w_j0_compat.c}                                     | 0
 math/{w_j0f.c => w_j0f_compat.c}                                   | 0
 math/{w_j0l.c => w_j0l_compat.c}                                   | 0
 math/{w_j1.c => w_j1_compat.c}                                     | 0
 math/{w_j1f.c => w_j1f_compat.c}                                   | 0
 math/{w_j1l.c => w_j1l_compat.c}                                   | 0
 math/{w_jn.c => w_jn_compat.c}                                     | 0
 math/{w_jnf.c => w_jnf_compat.c}                                   | 0
 math/{w_jnl.c => w_jnl_compat.c}                                   | 0
 math/{w_log10.c => w_log10_compat.c}                               | 0
 math/{w_log10f.c => w_log10f_compat.c}                             | 0
 math/{w_log10l.c => w_log10l_compat.c}                             | 0
 math/{w_log2.c => w_log2_compat.c}                                 | 0
 math/{w_log2f.c => w_log2f_compat.c}                               | 0
 math/{w_log2l.c => w_log2l_compat.c}                               | 0
 math/{w_log.c => w_log_compat.c}                                   | 0
 math/{w_logf.c => w_logf_compat.c}                                 | 0
 math/{w_logl.c => w_logl_compat.c}                                 | 0
 math/{w_pow.c => w_pow_compat.c}                                   | 0
 math/{w_powf.c => w_powf_compat.c}                                 | 0
 math/{w_powl.c => w_powl_compat.c}                                 | 0
 math/{w_remainder.c => w_remainder_compat.c}                       | 0
 math/{w_remainderf.c => w_remainderf_compat.c}                     | 0
 math/{w_remainderl.c => w_remainderl_compat.c}                     | 0
 math/{w_scalb.c => w_scalb_compat.c}                               | 0
 math/{w_scalbf.c => w_scalbf_compat.c}                             | 0
 math/{w_scalbl.c => w_scalbl_compat.c}                             | 0
 math/{w_sinh.c => w_sinh_compat.c}                                 | 0
 math/{w_sinhf.c => w_sinhf_compat.c}                               | 0
 math/{w_sinhl.c => w_sinhl_compat.c}                               | 0
 math/{w_sqrt.c => w_sqrt_compat.c}                                 | 0
 math/{w_sqrtf.c => w_sqrtf_compat.c}                               | 0
 math/{w_sqrtl.c => w_sqrtl_compat.c}                               | 0
 math/{w_tgamma.c => w_tgamma_compat.c}                             | 0
 math/{w_tgammaf.c => w_tgammaf_compat.c}                           | 0
 math/{w_tgammal.c => w_tgammal_compat.c}                           | 0
 sysdeps/ieee754/ldbl-opt/{w_acos.c => w_acos_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_acosh.c => w_acosh_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_acoshl.c => w_acoshl_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_acosl.c => w_acosl_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_asin.c => w_asin_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_asinl.c => w_asinl_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_atan2.c => w_atan2_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_atan2l.c => w_atan2l_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_atanh.c => w_atanh_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_atanhl.c => w_atanhl_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_cosh.c => w_cosh_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_coshl.c => w_coshl_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_exp10.c => w_exp10_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_exp10l.c => w_exp10l_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_fmod.c => w_fmod_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_fmodl.c => w_fmodl_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_hypot.c => w_hypot_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_hypotl.c => w_hypotl_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_j0.c => w_j0_compat.c}                 | 0
 sysdeps/ieee754/ldbl-opt/{w_j0l.c => w_j0l_compat.c}               | 0
 sysdeps/ieee754/ldbl-opt/{w_j1.c => w_j1_compat.c}                 | 0
 sysdeps/ieee754/ldbl-opt/{w_j1l.c => w_j1l_compat.c}               | 0
 sysdeps/ieee754/ldbl-opt/{w_jn.c => w_jn_compat.c}                 | 0
 sysdeps/ieee754/ldbl-opt/{w_jnl.c => w_jnl_compat.c}               | 0
 sysdeps/ieee754/ldbl-opt/{w_log10.c => w_log10_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_log10l.c => w_log10l_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_log2.c => w_log2_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_log2l.c => w_log2l_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_log.c => w_log_compat.c}               | 0
 sysdeps/ieee754/ldbl-opt/{w_logl.c => w_logl_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_pow.c => w_pow_compat.c}               | 0
 sysdeps/ieee754/ldbl-opt/{w_powl.c => w_powl_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_remainder.c => w_remainder_compat.c}   | 0
 sysdeps/ieee754/ldbl-opt/{w_remainderl.c => w_remainderl_compat.c} | 0
 sysdeps/ieee754/ldbl-opt/{w_scalb.c => w_scalb_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_scalbl.c => w_scalbl_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_sinh.c => w_sinh_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_sinhl.c => w_sinhl_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_sqrt.c => w_sqrt_compat.c}             | 0
 sysdeps/ieee754/ldbl-opt/{w_sqrtl.c => w_sqrtl_compat.c}           | 0
 sysdeps/ieee754/ldbl-opt/{w_tgamma.c => w_tgamma_compat.c}         | 0
 sysdeps/ieee754/ldbl-opt/{w_tgammal.c => w_tgammal_compat.c}       | 0
 108 files changed, 0 insertions(+), 0 deletions(-)
 rename math/{w_acos.c => w_acos_compat.c} (100%)
 rename math/{w_acosf.c => w_acosf_compat.c} (100%)
 rename math/{w_acosh.c => w_acosh_compat.c} (100%)
 rename math/{w_acoshf.c => w_acoshf_compat.c} (100%)
 rename math/{w_acoshl.c => w_acoshl_compat.c} (100%)
 rename math/{w_acosl.c => w_acosl_compat.c} (100%)
 rename math/{w_asin.c => w_asin_compat.c} (100%)
 rename math/{w_asinf.c => w_asinf_compat.c} (100%)
 rename math/{w_asinl.c => w_asinl_compat.c} (100%)
 rename math/{w_atan2.c => w_atan2_compat.c} (100%)
 rename math/{w_atan2f.c => w_atan2f_compat.c} (100%)
 rename math/{w_atan2l.c => w_atan2l_compat.c} (100%)
 rename math/{w_atanh.c => w_atanh_compat.c} (100%)
 rename math/{w_atanhf.c => w_atanhf_compat.c} (100%)
 rename math/{w_atanhl.c => w_atanhl_compat.c} (100%)
 rename math/{w_cosh.c => w_cosh_compat.c} (100%)
 rename math/{w_coshf.c => w_coshf_compat.c} (100%)
 rename math/{w_coshl.c => w_coshl_compat.c} (100%)
 rename math/{w_exp10.c => w_exp10_compat.c} (100%)
 rename math/{w_exp10f.c => w_exp10f_compat.c} (100%)
 rename math/{w_exp10l.c => w_exp10l_compat.c} (100%)
 rename math/{w_exp2.c => w_exp2_compat.c} (100%)
 rename math/{w_exp2f.c => w_exp2f_compat.c} (100%)
 rename math/{w_exp2l.c => w_exp2l_compat.c} (100%)
 rename math/{w_fmod.c => w_fmod_compat.c} (100%)
 rename math/{w_fmodf.c => w_fmodf_compat.c} (100%)
 rename math/{w_fmodl.c => w_fmodl_compat.c} (100%)
 rename math/{w_hypot.c => w_hypot_compat.c} (100%)
 rename math/{w_hypotf.c => w_hypotf_compat.c} (100%)
 rename math/{w_hypotl.c => w_hypotl_compat.c} (100%)
 rename math/{w_j0.c => w_j0_compat.c} (100%)
 rename math/{w_j0f.c => w_j0f_compat.c} (100%)
 rename math/{w_j0l.c => w_j0l_compat.c} (100%)
 rename math/{w_j1.c => w_j1_compat.c} (100%)
 rename math/{w_j1f.c => w_j1f_compat.c} (100%)
 rename math/{w_j1l.c => w_j1l_compat.c} (100%)
 rename math/{w_jn.c => w_jn_compat.c} (100%)
 rename math/{w_jnf.c => w_jnf_compat.c} (100%)
 rename math/{w_jnl.c => w_jnl_compat.c} (100%)
 rename math/{w_log10.c => w_log10_compat.c} (100%)
 rename math/{w_log10f.c => w_log10f_compat.c} (100%)
 rename math/{w_log10l.c => w_log10l_compat.c} (100%)
 rename math/{w_log2.c => w_log2_compat.c} (100%)
 rename math/{w_log2f.c => w_log2f_compat.c} (100%)
 rename math/{w_log2l.c => w_log2l_compat.c} (100%)
 rename math/{w_log.c => w_log_compat.c} (100%)
 rename math/{w_logf.c => w_logf_compat.c} (100%)
 rename math/{w_logl.c => w_logl_compat.c} (100%)
 rename math/{w_pow.c => w_pow_compat.c} (100%)
 rename math/{w_powf.c => w_powf_compat.c} (100%)
 rename math/{w_powl.c => w_powl_compat.c} (100%)
 rename math/{w_remainder.c => w_remainder_compat.c} (100%)
 rename math/{w_remainderf.c => w_remainderf_compat.c} (100%)
 rename math/{w_remainderl.c => w_remainderl_compat.c} (100%)
 rename math/{w_scalb.c => w_scalb_compat.c} (100%)
 rename math/{w_scalbf.c => w_scalbf_compat.c} (100%)
 rename math/{w_scalbl.c => w_scalbl_compat.c} (100%)
 rename math/{w_sinh.c => w_sinh_compat.c} (100%)
 rename math/{w_sinhf.c => w_sinhf_compat.c} (100%)
 rename math/{w_sinhl.c => w_sinhl_compat.c} (100%)
 rename math/{w_sqrt.c => w_sqrt_compat.c} (100%)
 rename math/{w_sqrtf.c => w_sqrtf_compat.c} (100%)
 rename math/{w_sqrtl.c => w_sqrtl_compat.c} (100%)
 rename math/{w_tgamma.c => w_tgamma_compat.c} (100%)
 rename math/{w_tgammaf.c => w_tgammaf_compat.c} (100%)
 rename math/{w_tgammal.c => w_tgammal_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_acos.c => w_acos_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_acosh.c => w_acosh_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_acoshl.c => w_acoshl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_acosl.c => w_acosl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_asin.c => w_asin_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_asinl.c => w_asinl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_atan2.c => w_atan2_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_atan2l.c => w_atan2l_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_atanh.c => w_atanh_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_atanhl.c => w_atanhl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_cosh.c => w_cosh_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_coshl.c => w_coshl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_exp10.c => w_exp10_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_exp10l.c => w_exp10l_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_fmod.c => w_fmod_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_fmodl.c => w_fmodl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_hypot.c => w_hypot_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_hypotl.c => w_hypotl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_j0.c => w_j0_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_j0l.c => w_j0l_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_j1.c => w_j1_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_j1l.c => w_j1l_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_jn.c => w_jn_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_jnl.c => w_jnl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_log10.c => w_log10_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_log10l.c => w_log10l_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_log2.c => w_log2_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_log2l.c => w_log2l_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_log.c => w_log_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_logl.c => w_logl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_pow.c => w_pow_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_powl.c => w_powl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_remainder.c => w_remainder_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_remainderl.c => w_remainderl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_scalb.c => w_scalb_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_scalbl.c => w_scalbl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_sinh.c => w_sinh_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_sinhl.c => w_sinhl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_sqrt.c => w_sqrt_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_sqrtl.c => w_sqrtl_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_tgamma.c => w_tgamma_compat.c} (100%)
 rename sysdeps/ieee754/ldbl-opt/{w_tgammal.c => w_tgammal_compat.c} (100%)

diff --git a/math/w_acos.c b/math/w_acos_compat.c
similarity index 100%
rename from math/w_acos.c
rename to math/w_acos_compat.c
diff --git a/math/w_acosf.c b/math/w_acosf_compat.c
similarity index 100%
rename from math/w_acosf.c
rename to math/w_acosf_compat.c
diff --git a/math/w_acosh.c b/math/w_acosh_compat.c
similarity index 100%
rename from math/w_acosh.c
rename to math/w_acosh_compat.c
diff --git a/math/w_acoshf.c b/math/w_acoshf_compat.c
similarity index 100%
rename from math/w_acoshf.c
rename to math/w_acoshf_compat.c
diff --git a/math/w_acoshl.c b/math/w_acoshl_compat.c
similarity index 100%
rename from math/w_acoshl.c
rename to math/w_acoshl_compat.c
diff --git a/math/w_acosl.c b/math/w_acosl_compat.c
similarity index 100%
rename from math/w_acosl.c
rename to math/w_acosl_compat.c
diff --git a/math/w_asin.c b/math/w_asin_compat.c
similarity index 100%
rename from math/w_asin.c
rename to math/w_asin_compat.c
diff --git a/math/w_asinf.c b/math/w_asinf_compat.c
similarity index 100%
rename from math/w_asinf.c
rename to math/w_asinf_compat.c
diff --git a/math/w_asinl.c b/math/w_asinl_compat.c
similarity index 100%
rename from math/w_asinl.c
rename to math/w_asinl_compat.c
diff --git a/math/w_atan2.c b/math/w_atan2_compat.c
similarity index 100%
rename from math/w_atan2.c
rename to math/w_atan2_compat.c
diff --git a/math/w_atan2f.c b/math/w_atan2f_compat.c
similarity index 100%
rename from math/w_atan2f.c
rename to math/w_atan2f_compat.c
diff --git a/math/w_atan2l.c b/math/w_atan2l_compat.c
similarity index 100%
rename from math/w_atan2l.c
rename to math/w_atan2l_compat.c
diff --git a/math/w_atanh.c b/math/w_atanh_compat.c
similarity index 100%
rename from math/w_atanh.c
rename to math/w_atanh_compat.c
diff --git a/math/w_atanhf.c b/math/w_atanhf_compat.c
similarity index 100%
rename from math/w_atanhf.c
rename to math/w_atanhf_compat.c
diff --git a/math/w_atanhl.c b/math/w_atanhl_compat.c
similarity index 100%
rename from math/w_atanhl.c
rename to math/w_atanhl_compat.c
diff --git a/math/w_cosh.c b/math/w_cosh_compat.c
similarity index 100%
rename from math/w_cosh.c
rename to math/w_cosh_compat.c
diff --git a/math/w_coshf.c b/math/w_coshf_compat.c
similarity index 100%
rename from math/w_coshf.c
rename to math/w_coshf_compat.c
diff --git a/math/w_coshl.c b/math/w_coshl_compat.c
similarity index 100%
rename from math/w_coshl.c
rename to math/w_coshl_compat.c
diff --git a/math/w_exp10.c b/math/w_exp10_compat.c
similarity index 100%
rename from math/w_exp10.c
rename to math/w_exp10_compat.c
diff --git a/math/w_exp10f.c b/math/w_exp10f_compat.c
similarity index 100%
rename from math/w_exp10f.c
rename to math/w_exp10f_compat.c
diff --git a/math/w_exp10l.c b/math/w_exp10l_compat.c
similarity index 100%
rename from math/w_exp10l.c
rename to math/w_exp10l_compat.c
diff --git a/math/w_exp2.c b/math/w_exp2_compat.c
similarity index 100%
rename from math/w_exp2.c
rename to math/w_exp2_compat.c
diff --git a/math/w_exp2f.c b/math/w_exp2f_compat.c
similarity index 100%
rename from math/w_exp2f.c
rename to math/w_exp2f_compat.c
diff --git a/math/w_exp2l.c b/math/w_exp2l_compat.c
similarity index 100%
rename from math/w_exp2l.c
rename to math/w_exp2l_compat.c
diff --git a/math/w_fmod.c b/math/w_fmod_compat.c
similarity index 100%
rename from math/w_fmod.c
rename to math/w_fmod_compat.c
diff --git a/math/w_fmodf.c b/math/w_fmodf_compat.c
similarity index 100%
rename from math/w_fmodf.c
rename to math/w_fmodf_compat.c
diff --git a/math/w_fmodl.c b/math/w_fmodl_compat.c
similarity index 100%
rename from math/w_fmodl.c
rename to math/w_fmodl_compat.c
diff --git a/math/w_hypot.c b/math/w_hypot_compat.c
similarity index 100%
rename from math/w_hypot.c
rename to math/w_hypot_compat.c
diff --git a/math/w_hypotf.c b/math/w_hypotf_compat.c
similarity index 100%
rename from math/w_hypotf.c
rename to math/w_hypotf_compat.c
diff --git a/math/w_hypotl.c b/math/w_hypotl_compat.c
similarity index 100%
rename from math/w_hypotl.c
rename to math/w_hypotl_compat.c
diff --git a/math/w_j0.c b/math/w_j0_compat.c
similarity index 100%
rename from math/w_j0.c
rename to math/w_j0_compat.c
diff --git a/math/w_j0f.c b/math/w_j0f_compat.c
similarity index 100%
rename from math/w_j0f.c
rename to math/w_j0f_compat.c
diff --git a/math/w_j0l.c b/math/w_j0l_compat.c
similarity index 100%
rename from math/w_j0l.c
rename to math/w_j0l_compat.c
diff --git a/math/w_j1.c b/math/w_j1_compat.c
similarity index 100%
rename from math/w_j1.c
rename to math/w_j1_compat.c
diff --git a/math/w_j1f.c b/math/w_j1f_compat.c
similarity index 100%
rename from math/w_j1f.c
rename to math/w_j1f_compat.c
diff --git a/math/w_j1l.c b/math/w_j1l_compat.c
similarity index 100%
rename from math/w_j1l.c
rename to math/w_j1l_compat.c
diff --git a/math/w_jn.c b/math/w_jn_compat.c
similarity index 100%
rename from math/w_jn.c
rename to math/w_jn_compat.c
diff --git a/math/w_jnf.c b/math/w_jnf_compat.c
similarity index 100%
rename from math/w_jnf.c
rename to math/w_jnf_compat.c
diff --git a/math/w_jnl.c b/math/w_jnl_compat.c
similarity index 100%
rename from math/w_jnl.c
rename to math/w_jnl_compat.c
diff --git a/math/w_log10.c b/math/w_log10_compat.c
similarity index 100%
rename from math/w_log10.c
rename to math/w_log10_compat.c
diff --git a/math/w_log10f.c b/math/w_log10f_compat.c
similarity index 100%
rename from math/w_log10f.c
rename to math/w_log10f_compat.c
diff --git a/math/w_log10l.c b/math/w_log10l_compat.c
similarity index 100%
rename from math/w_log10l.c
rename to math/w_log10l_compat.c
diff --git a/math/w_log2.c b/math/w_log2_compat.c
similarity index 100%
rename from math/w_log2.c
rename to math/w_log2_compat.c
diff --git a/math/w_log2f.c b/math/w_log2f_compat.c
similarity index 100%
rename from math/w_log2f.c
rename to math/w_log2f_compat.c
diff --git a/math/w_log2l.c b/math/w_log2l_compat.c
similarity index 100%
rename from math/w_log2l.c
rename to math/w_log2l_compat.c
diff --git a/math/w_log.c b/math/w_log_compat.c
similarity index 100%
rename from math/w_log.c
rename to math/w_log_compat.c
diff --git a/math/w_logf.c b/math/w_logf_compat.c
similarity index 100%
rename from math/w_logf.c
rename to math/w_logf_compat.c
diff --git a/math/w_logl.c b/math/w_logl_compat.c
similarity index 100%
rename from math/w_logl.c
rename to math/w_logl_compat.c
diff --git a/math/w_pow.c b/math/w_pow_compat.c
similarity index 100%
rename from math/w_pow.c
rename to math/w_pow_compat.c
diff --git a/math/w_powf.c b/math/w_powf_compat.c
similarity index 100%
rename from math/w_powf.c
rename to math/w_powf_compat.c
diff --git a/math/w_powl.c b/math/w_powl_compat.c
similarity index 100%
rename from math/w_powl.c
rename to math/w_powl_compat.c
diff --git a/math/w_remainder.c b/math/w_remainder_compat.c
similarity index 100%
rename from math/w_remainder.c
rename to math/w_remainder_compat.c
diff --git a/math/w_remainderf.c b/math/w_remainderf_compat.c
similarity index 100%
rename from math/w_remainderf.c
rename to math/w_remainderf_compat.c
diff --git a/math/w_remainderl.c b/math/w_remainderl_compat.c
similarity index 100%
rename from math/w_remainderl.c
rename to math/w_remainderl_compat.c
diff --git a/math/w_scalb.c b/math/w_scalb_compat.c
similarity index 100%
rename from math/w_scalb.c
rename to math/w_scalb_compat.c
diff --git a/math/w_scalbf.c b/math/w_scalbf_compat.c
similarity index 100%
rename from math/w_scalbf.c
rename to math/w_scalbf_compat.c
diff --git a/math/w_scalbl.c b/math/w_scalbl_compat.c
similarity index 100%
rename from math/w_scalbl.c
rename to math/w_scalbl_compat.c
diff --git a/math/w_sinh.c b/math/w_sinh_compat.c
similarity index 100%
rename from math/w_sinh.c
rename to math/w_sinh_compat.c
diff --git a/math/w_sinhf.c b/math/w_sinhf_compat.c
similarity index 100%
rename from math/w_sinhf.c
rename to math/w_sinhf_compat.c
diff --git a/math/w_sinhl.c b/math/w_sinhl_compat.c
similarity index 100%
rename from math/w_sinhl.c
rename to math/w_sinhl_compat.c
diff --git a/math/w_sqrt.c b/math/w_sqrt_compat.c
similarity index 100%
rename from math/w_sqrt.c
rename to math/w_sqrt_compat.c
diff --git a/math/w_sqrtf.c b/math/w_sqrtf_compat.c
similarity index 100%
rename from math/w_sqrtf.c
rename to math/w_sqrtf_compat.c
diff --git a/math/w_sqrtl.c b/math/w_sqrtl_compat.c
similarity index 100%
rename from math/w_sqrtl.c
rename to math/w_sqrtl_compat.c
diff --git a/math/w_tgamma.c b/math/w_tgamma_compat.c
similarity index 100%
rename from math/w_tgamma.c
rename to math/w_tgamma_compat.c
diff --git a/math/w_tgammaf.c b/math/w_tgammaf_compat.c
similarity index 100%
rename from math/w_tgammaf.c
rename to math/w_tgammaf_compat.c
diff --git a/math/w_tgammal.c b/math/w_tgammal_compat.c
similarity index 100%
rename from math/w_tgammal.c
rename to math/w_tgammal_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_acos.c b/sysdeps/ieee754/ldbl-opt/w_acos_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_acos.c
rename to sysdeps/ieee754/ldbl-opt/w_acos_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_acosh.c b/sysdeps/ieee754/ldbl-opt/w_acosh_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_acosh.c
rename to sysdeps/ieee754/ldbl-opt/w_acosh_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_acoshl.c b/sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_acoshl.c
rename to sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_acosl.c b/sysdeps/ieee754/ldbl-opt/w_acosl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_acosl.c
rename to sysdeps/ieee754/ldbl-opt/w_acosl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_asin.c b/sysdeps/ieee754/ldbl-opt/w_asin_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_asin.c
rename to sysdeps/ieee754/ldbl-opt/w_asin_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_asinl.c b/sysdeps/ieee754/ldbl-opt/w_asinl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_asinl.c
rename to sysdeps/ieee754/ldbl-opt/w_asinl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_atan2.c b/sysdeps/ieee754/ldbl-opt/w_atan2_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_atan2.c
rename to sysdeps/ieee754/ldbl-opt/w_atan2_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_atan2l.c b/sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_atan2l.c
rename to sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_atanh.c b/sysdeps/ieee754/ldbl-opt/w_atanh_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_atanh.c
rename to sysdeps/ieee754/ldbl-opt/w_atanh_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_atanhl.c b/sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_atanhl.c
rename to sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_cosh.c b/sysdeps/ieee754/ldbl-opt/w_cosh_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_cosh.c
rename to sysdeps/ieee754/ldbl-opt/w_cosh_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_coshl.c b/sysdeps/ieee754/ldbl-opt/w_coshl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_coshl.c
rename to sysdeps/ieee754/ldbl-opt/w_coshl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_exp10.c b/sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_exp10.c
rename to sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_exp10l.c b/sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_exp10l.c
rename to sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_fmod.c b/sysdeps/ieee754/ldbl-opt/w_fmod_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_fmod.c
rename to sysdeps/ieee754/ldbl-opt/w_fmod_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_fmodl.c b/sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_fmodl.c
rename to sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_hypot.c b/sysdeps/ieee754/ldbl-opt/w_hypot_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_hypot.c
rename to sysdeps/ieee754/ldbl-opt/w_hypot_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_hypotl.c b/sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_hypotl.c
rename to sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_j0.c b/sysdeps/ieee754/ldbl-opt/w_j0_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_j0.c
rename to sysdeps/ieee754/ldbl-opt/w_j0_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_j0l.c b/sysdeps/ieee754/ldbl-opt/w_j0l_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_j0l.c
rename to sysdeps/ieee754/ldbl-opt/w_j0l_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_j1.c b/sysdeps/ieee754/ldbl-opt/w_j1_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_j1.c
rename to sysdeps/ieee754/ldbl-opt/w_j1_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_j1l.c b/sysdeps/ieee754/ldbl-opt/w_j1l_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_j1l.c
rename to sysdeps/ieee754/ldbl-opt/w_j1l_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_jn.c b/sysdeps/ieee754/ldbl-opt/w_jn_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_jn.c
rename to sysdeps/ieee754/ldbl-opt/w_jn_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_jnl.c b/sysdeps/ieee754/ldbl-opt/w_jnl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_jnl.c
rename to sysdeps/ieee754/ldbl-opt/w_jnl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_log10.c b/sysdeps/ieee754/ldbl-opt/w_log10_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_log10.c
rename to sysdeps/ieee754/ldbl-opt/w_log10_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_log10l.c b/sysdeps/ieee754/ldbl-opt/w_log10l_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_log10l.c
rename to sysdeps/ieee754/ldbl-opt/w_log10l_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_log2.c b/sysdeps/ieee754/ldbl-opt/w_log2_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_log2.c
rename to sysdeps/ieee754/ldbl-opt/w_log2_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_log2l.c b/sysdeps/ieee754/ldbl-opt/w_log2l_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_log2l.c
rename to sysdeps/ieee754/ldbl-opt/w_log2l_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_log.c b/sysdeps/ieee754/ldbl-opt/w_log_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_log.c
rename to sysdeps/ieee754/ldbl-opt/w_log_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_logl.c b/sysdeps/ieee754/ldbl-opt/w_logl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_logl.c
rename to sysdeps/ieee754/ldbl-opt/w_logl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_pow.c b/sysdeps/ieee754/ldbl-opt/w_pow_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_pow.c
rename to sysdeps/ieee754/ldbl-opt/w_pow_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_powl.c b/sysdeps/ieee754/ldbl-opt/w_powl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_powl.c
rename to sysdeps/ieee754/ldbl-opt/w_powl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_remainder.c b/sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_remainder.c
rename to sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_remainderl.c b/sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_remainderl.c
rename to sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_scalb.c b/sysdeps/ieee754/ldbl-opt/w_scalb_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_scalb.c
rename to sysdeps/ieee754/ldbl-opt/w_scalb_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_scalbl.c b/sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_scalbl.c
rename to sysdeps/ieee754/ldbl-opt/w_scalbl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_sinh.c b/sysdeps/ieee754/ldbl-opt/w_sinh_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_sinh.c
rename to sysdeps/ieee754/ldbl-opt/w_sinh_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_sinhl.c b/sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_sinhl.c
rename to sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_sqrt.c b/sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_sqrt.c
rename to sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_sqrtl.c b/sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_sqrtl.c
rename to sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_tgamma.c b/sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_tgamma.c
rename to sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c
diff --git a/sysdeps/ieee754/ldbl-opt/w_tgammal.c b/sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c
similarity index 100%
rename from sysdeps/ieee754/ldbl-opt/w_tgammal.c
rename to sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c
-- 
2.4.11

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 0/4] Move wrappers to libm-compat-calls-auto
  2016-12-21 11:22 [PATCH 0/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
                   ` (3 preceding siblings ...)
  2016-12-21 11:22 ` [PATCH 2/4] Automatic part I: Add suffix to filename Gabriel F. T. Gomes
@ 2016-12-21 12:46 ` Joseph Myers
  2016-12-21 17:17   ` Zack Weinberg
  4 siblings, 1 reply; 8+ messages in thread
From: Joseph Myers @ 2016-12-21 12:46 UTC (permalink / raw)
  To: Gabriel F. T. Gomes; +Cc: libc-alpha

On Wed, 21 Dec 2016, Gabriel F. T. Gomes wrote:

> The second patch renames the wrappes in math/ and in
> sysdeps/ieee754/ldbl-opt/ by adding the suffix "_compat" to the
> filenames.  No changes have been made to the files at this point.

There are various architecture-specific w_sqrt* files that need moving at 
the same time as the architecture-independent w_sqrt* files, and ia64 has 
a nearly full set of w_* files (mostly dummy files to prevent the generic 
ones from being built) which need moving similarly.

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 0/4] Move wrappers to libm-compat-calls-auto
  2016-12-21 12:46 ` [PATCH 0/4] Move wrappers to libm-compat-calls-auto Joseph Myers
@ 2016-12-21 17:17   ` Zack Weinberg
  2016-12-21 17:36     ` Joseph Myers
  0 siblings, 1 reply; 8+ messages in thread
From: Zack Weinberg @ 2016-12-21 17:17 UTC (permalink / raw)
  To: Joseph Myers; +Cc: Gabriel F. T. Gomes, GNU C Library

After this change, is the w_ prefix on these filenames still
meaningful?  If not, please remove it at the same time.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 0/4] Move wrappers to libm-compat-calls-auto
  2016-12-21 17:17   ` Zack Weinberg
@ 2016-12-21 17:36     ` Joseph Myers
  0 siblings, 0 replies; 8+ messages in thread
From: Joseph Myers @ 2016-12-21 17:36 UTC (permalink / raw)
  To: Zack Weinberg; +Cc: Gabriel F. T. Gomes, GNU C Library

On Wed, 21 Dec 2016, Zack Weinberg wrote:

> After this change, is the w_ prefix on these filenames still
> meaningful?  If not, please remove it at the same time.

They are still wrappers (and the new type-generic wrappers used for 
float128 are still wrappers, just ones that set errno directly without 
supporting the obsolescent _LIB_VERSION / matherr / __kernel_standard, 
which we don't want supported in any new interfaces).  The prefix seems 
just as meaningful; you need to distinguish the wrappers and the main 
(e_*) implementation.

-- 
Joseph S. Myers
joseph@codesourcery.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-12-21 17:36 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-21 11:22 [PATCH 0/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
2016-12-21 11:22 ` [PATCH 4/4] Automatic part III: Fix filename in Makefile Gabriel F. T. Gomes
2016-12-21 11:22 ` [PATCH 3/4] Automatic part II: Fix filename in #includes Gabriel F. T. Gomes
2016-12-21 11:22 ` [PATCH 1/4] Move wrappers to libm-compat-calls-auto Gabriel F. T. Gomes
2016-12-21 11:22 ` [PATCH 2/4] Automatic part I: Add suffix to filename Gabriel F. T. Gomes
2016-12-21 12:46 ` [PATCH 0/4] Move wrappers to libm-compat-calls-auto Joseph Myers
2016-12-21 17:17   ` Zack Weinberg
2016-12-21 17:36     ` Joseph Myers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).