From: Joseph Myers Date: Thu, 22 Jun 2017 22:39:48 +0000 (+0000) Subject: Make errno-setting libm templates include errno.h. X-Git-Tag: glibc-2.26~267 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46d2e49c49165c09d8ebf555e56d74d063102342;p=thirdparty%2Fglibc.git Make errno-setting libm templates include errno.h. Various type-generic libm wrapper templates, as used for float128, set errno but do not include errno.h. I presume they must get an implicit include from some internal header on powerpc64le; they don't get such an implicit include on x86_64. This patch adds the missing includes of errno.h to each such wrapper. Tested for x86_64 (in conjunction with float128 patches). * math/w_acos_template.c [__USE_WRAPPER_TEMPLATE]: Include . * math/w_acosh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_asin_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_atanh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_cosh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_exp10_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_exp2_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_exp_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_fmod_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_hypot_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_j0_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_j1_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_jn_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_lgamma_r_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_lgamma_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_log10_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_log2_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_log_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_pow_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_remainder_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_sinh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_sqrt_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. * math/w_tgamma_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. --- diff --git a/ChangeLog b/ChangeLog index af62c056e49..b9d30100d9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,30 @@ 2017-06-22 Joseph Myers + * math/w_acos_template.c [__USE_WRAPPER_TEMPLATE]: Include + . + * math/w_acosh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_asin_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_atanh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_cosh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_exp10_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_exp2_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_exp_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_fmod_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_hypot_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_j0_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_j1_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_jn_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_lgamma_r_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_lgamma_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_log10_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_log2_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_log_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_pow_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_remainder_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_sinh_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_sqrt_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * math/w_tgamma_template.c [__USE_WRAPPER_TEMPLATE]: Likewise. + * sysdeps/ieee754/float128/strtof128_l.c: Include instead of . * sysdeps/ieee754/float128/wcstof128.c: Likewise. diff --git a/math/w_acos_template.c b/math/w_acos_template.c index ea0e7d4f02f..b1de997a78b 100644 --- a/math/w_acos_template.c +++ b/math/w_acos_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_acosh_template.c b/math/w_acosh_template.c index 31f63dbd96e..276da87b393 100644 --- a/math/w_acosh_template.c +++ b/math/w_acosh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_asin_template.c b/math/w_asin_template.c index 41c610245fb..48a1010102f 100644 --- a/math/w_asin_template.c +++ b/math/w_asin_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_atanh_template.c b/math/w_atanh_template.c index 771af5aff84..543edaf134e 100644 --- a/math/w_atanh_template.c +++ b/math/w_atanh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_cosh_template.c b/math/w_cosh_template.c index b912e6e6a52..6b26dd5ddba 100644 --- a/math/w_cosh_template.c +++ b/math/w_cosh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_exp10_template.c b/math/w_exp10_template.c index 8f7997dd350..f63950b55e0 100644 --- a/math/w_exp10_template.c +++ b/math/w_exp10_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_exp2_template.c b/math/w_exp2_template.c index 76577c7fca8..9c817b60bc3 100644 --- a/math/w_exp2_template.c +++ b/math/w_exp2_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_exp_template.c b/math/w_exp_template.c index c0a4ec5be32..450597a2b7a 100644 --- a/math/w_exp_template.c +++ b/math/w_exp_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_fmod_template.c b/math/w_fmod_template.c index 06d7c756610..271f2aad677 100644 --- a/math/w_fmod_template.c +++ b/math/w_fmod_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_hypot_template.c b/math/w_hypot_template.c index 9298add7567..f29ecb1e9ac 100644 --- a/math/w_hypot_template.c +++ b/math/w_hypot_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_j0_template.c b/math/w_j0_template.c index f49874fa100..92b69583675 100644 --- a/math/w_j0_template.c +++ b/math/w_j0_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_j1_template.c b/math/w_j1_template.c index 6d1058f7e08..47dcbcd3811 100644 --- a/math/w_j1_template.c +++ b/math/w_j1_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_jn_template.c b/math/w_jn_template.c index fd138359be2..32912e278fc 100644 --- a/math/w_jn_template.c +++ b/math/w_jn_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_lgamma_r_template.c b/math/w_lgamma_r_template.c index 977d1b5fc48..5610db167c9 100644 --- a/math/w_lgamma_r_template.c +++ b/math/w_lgamma_r_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_lgamma_template.c b/math/w_lgamma_template.c index a60413d9374..13829af382d 100644 --- a/math/w_lgamma_template.c +++ b/math/w_lgamma_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_log10_template.c b/math/w_log10_template.c index 92735f03406..6cdaf3616f2 100644 --- a/math/w_log10_template.c +++ b/math/w_log10_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_log2_template.c b/math/w_log2_template.c index a80b287da61..7bce7aec1ba 100644 --- a/math/w_log2_template.c +++ b/math/w_log2_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_log_template.c b/math/w_log_template.c index 3f9830c1964..f1d05347148 100644 --- a/math/w_log_template.c +++ b/math/w_log_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_pow_template.c b/math/w_pow_template.c index 50431b985f4..19c25fb88f7 100644 --- a/math/w_pow_template.c +++ b/math/w_pow_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_remainder_template.c b/math/w_remainder_template.c index 4ecf10d360d..aba43d63aee 100644 --- a/math/w_remainder_template.c +++ b/math/w_remainder_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_sinh_template.c b/math/w_sinh_template.c index 7a147ded9d2..b364e27002f 100644 --- a/math/w_sinh_template.c +++ b/math/w_sinh_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_sqrt_template.c b/math/w_sqrt_template.c index f97074f0620..5fae302382d 100644 --- a/math/w_sqrt_template.c +++ b/math/w_sqrt_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include diff --git a/math/w_tgamma_template.c b/math/w_tgamma_template.c index 277a8377e33..017dbeba095 100644 --- a/math/w_tgamma_template.c +++ b/math/w_tgamma_template.c @@ -21,6 +21,7 @@ for each floating-point type. */ #if __USE_WRAPPER_TEMPLATE +# include # include # include # include