mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-16 16:10:06 +00:00
c52944e8cc
After my changes to move various macros, inlines and other content from math_private.h to more specific headers, many files including math_private.h no longer need to do so. Furthermore, since the optimized inlines of various functions have been moved to include/fenv.h or replaced by use of function names GCC inlines automatically, a missing math_private.h include where one is appropriate will reliably cause a build failure rather than possibly causing code to be less well optimized while still building successfully. Thus, this patch removes includes of math_private.h that are now unnecessary. In the case of two RISC-V files, the include is replaced by one of stdbool.h because the files in question were relying on math_private.h to get a definition of bool. Tested for x86_64 and x86, and with build-many-glibcs.py. * math/fromfp.h: Do not include <math_private.h>. * math/s_cacosh_template.c: Likewise. * math/s_casin_template.c: Likewise. * math/s_casinh_template.c: Likewise. * math/s_ccos_template.c: Likewise. * math/s_cproj_template.c: Likewise. * math/s_fdim_template.c: Likewise. * math/s_fmaxmag_template.c: Likewise. * math/s_fminmag_template.c: Likewise. * math/s_iseqsig_template.c: Likewise. * math/s_ldexp_template.c: Likewise. * math/s_nextdown_template.c: Likewise. * math/w_log1p_template.c: Likewise. * math/w_scalbln_template.c: Likewise. * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise. * sysdeps/aarch64/fpu/fesetround.c: Likewise. * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise. * sysdeps/aarch64/fpu/ftestexcept.c: Likewise. * sysdeps/aarch64/fpu/s_llrint.c: Likewise. * sysdeps/aarch64/fpu/s_llrintf.c: Likewise. * sysdeps/aarch64/fpu/s_lrint.c: Likewise. * sysdeps/aarch64/fpu/s_lrintf.c: Likewise. * sysdeps/i386/fpu/s_atanl.c: Likewise. * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise. * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise. * sysdeps/i386/fpu/s_fdim.c: Likewise. * sysdeps/i386/fpu/s_logbl.c: Likewise. * sysdeps/i386/fpu/s_rintl.c: Likewise. * sysdeps/i386/fpu/s_significandl.c: Likewise. * sysdeps/ia64/fpu/s_matherrf.c: Likewise. * sysdeps/ia64/fpu/s_matherrl.c: Likewise. * sysdeps/ieee754/dbl-64/s_atan.c: Likewise. * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise. * sysdeps/ieee754/dbl-64/s_fma.c: Likewise. * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise. * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise. * sysdeps/ieee754/k_standardf.c: Likewise. * sysdeps/ieee754/k_standardl.c: Likewise. * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise. * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise. * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c: Likewise. * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise. * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise. * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise. * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise. * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise. * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise. * sysdeps/ieee754/s_signgam.c: Likewise. * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise. * sysdeps/powerpc/power5+/fpu/s_modff.c: Likewise. * sysdeps/powerpc/power7/fpu/s_logbf.c: Likewise. * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise. * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise. * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise. * sysdeps/riscv/rv64/rvd/s_round.c: Likewise. * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise. * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise. * sysdeps/riscv/rvd/s_finite.c: Likewise. * sysdeps/riscv/rvd/s_fmax.c: Likewise. * sysdeps/riscv/rvd/s_fmin.c: Likewise. * sysdeps/riscv/rvd/s_fpclassify.c: Likewise. * sysdeps/riscv/rvd/s_isinf.c: Likewise. * sysdeps/riscv/rvd/s_isnan.c: Likewise. * sysdeps/riscv/rvd/s_issignaling.c: Likewise. * sysdeps/riscv/rvf/fegetround.c: Likewise. * sysdeps/riscv/rvf/feholdexcpt.c: Likewise. * sysdeps/riscv/rvf/fesetenv.c: Likewise. * sysdeps/riscv/rvf/fesetround.c: Likewise. * sysdeps/riscv/rvf/feupdateenv.c: Likewise. * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise. * sysdeps/riscv/rvf/ftestexcept.c: Likewise. * sysdeps/riscv/rvf/s_ceilf.c: Likewise. * sysdeps/riscv/rvf/s_finitef.c: Likewise. * sysdeps/riscv/rvf/s_floorf.c: Likewise. * sysdeps/riscv/rvf/s_fmaxf.c: Likewise. * sysdeps/riscv/rvf/s_fminf.c: Likewise. * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise. * sysdeps/riscv/rvf/s_isinff.c: Likewise. * sysdeps/riscv/rvf/s_isnanf.c: Likewise. * sysdeps/riscv/rvf/s_issignalingf.c: Likewise. * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise. * sysdeps/riscv/rvf/s_roundevenf.c: Likewise. * sysdeps/riscv/rvf/s_roundf.c: Likewise. * sysdeps/riscv/rvf/s_truncf.c: Likewise. * sysdeps/riscv/rv64/rvd/s_rint.c: Include <stdbool.h> instead of <math_private.h>. * sysdeps/riscv/rvf/s_rintf.c: Likewise. |
||
---|---|---|
.. | ||
wordsize-64 | ||
asincos.tbl | ||
atnat2.h | ||
atnat.h | ||
branred.c | ||
branred.h | ||
dbl2mpn.c | ||
dla.h | ||
doasin.c | ||
doasin.h | ||
dosincos.c | ||
dosincos.h | ||
e_acos.c | ||
e_acosh.c | ||
e_asin.c | ||
e_atan2.c | ||
e_atanh.c | ||
e_cosh.c | ||
e_exp2.c | ||
e_exp10.c | ||
e_exp_data.c | ||
e_exp.c | ||
e_fmod.c | ||
e_gamma_r.c | ||
e_hypot.c | ||
e_ilogb.c | ||
e_j0.c | ||
e_j1.c | ||
e_jn.c | ||
e_lgamma_r.c | ||
e_log2_data.c | ||
e_log2.c | ||
e_log10.c | ||
e_log_data.c | ||
e_log.c | ||
e_pow_log_data.c | ||
e_pow.c | ||
e_remainder.c | ||
e_sinh.c | ||
e_sqrt.c | ||
gamma_product.c | ||
gamma_productf.c | ||
k_rem_pio2.c | ||
k_tan.c | ||
lgamma_neg.c | ||
lgamma_product.c | ||
Makefile | ||
math_config.h | ||
math_err.c | ||
MathLib.h | ||
mpa-arch.h | ||
mpa.c | ||
mpa.h | ||
mpatan2.c | ||
mpatan.c | ||
mpatan.h | ||
mpn2dbl.c | ||
mpsqrt.c | ||
mpsqrt.h | ||
mptan.c | ||
mydefs.h | ||
powtwo.tbl | ||
root.tbl | ||
s_asinh.c | ||
s_atan.c | ||
s_cbrt.c | ||
s_ceil.c | ||
s_copysign.c | ||
s_cos.c | ||
s_erf.c | ||
s_expm1.c | ||
s_f32xaddf64.c | ||
s_f32xdivf64.c | ||
s_f32xmulf64.c | ||
s_f32xsubf64.c | ||
s_fabs.c | ||
s_fadd.c | ||
s_fdiv.c | ||
s_finite.c | ||
s_floor.c | ||
s_fma.c | ||
s_fmaf.c | ||
s_fmul.c | ||
s_fpclassify.c | ||
s_frexp.c | ||
s_fromfp_main.c | ||
s_fromfp.c | ||
s_fromfpx.c | ||
s_fsub.c | ||
s_getpayload.c | ||
s_isinf.c | ||
s_isnan.c | ||
s_issignaling.c | ||
s_llrint.c | ||
s_llround.c | ||
s_log1p.c | ||
s_logb.c | ||
s_lrint.c | ||
s_lround.c | ||
s_modf.c | ||
s_nearbyint.c | ||
s_nexttoward.c | ||
s_nextup.c | ||
s_remquo.c | ||
s_rint.c | ||
s_round.c | ||
s_roundeven.c | ||
s_scalbln.c | ||
s_scalbn.c | ||
s_setpayload_main.c | ||
s_setpayload.c | ||
s_setpayloadsig.c | ||
s_signbit.c | ||
s_sin.c | ||
s_sincos.c | ||
s_tan.c | ||
s_tanh.c | ||
s_totalorder.c | ||
s_totalordermag.c | ||
s_trunc.c | ||
s_ufromfp.c | ||
s_ufromfpx.c | ||
sincos32.c | ||
sincos32.h | ||
sincostab.c | ||
uasncs.h | ||
uatan.tbl | ||
urem.h | ||
usncs.h | ||
utan.h | ||
utan.tbl | ||
x2y2m1.c | ||
x2y2m1f.c |