diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-02-13 16:35:44 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2025-02-17 10:09:09 -0300 |
commit | 1faccf388abb497fc9429126ae5e333daa24efb3 (patch) | |
tree | d7b54c0e962874aeaa0d22291d86df181cac3b6f /math | |
parent | 246e52574d0c6dd3523a6e6f680b1599655f7aa1 (diff) | |
download | glibc-1faccf388abb497fc9429126ae5e333daa24efb3.zip glibc-1faccf388abb497fc9429126ae5e333daa24efb3.tar.gz glibc-1faccf388abb497fc9429126ae5e333daa24efb3.tar.bz2 |
math: Consolidate acospif and asinpif internal tables
The libm size improvement built with gcc-14, "--enable-stack-protector=strong
--enable-bind-now=yes --enable-fortify-source=2":
Before:
text data bss dec hex filename
583444 844 12 584300 8ea6c aarch64-linux-gnu/math/libm.so
976349 1076 12 977437 eea1d x86_64-linux-gnu/math/libm.so
1204738 5608 368 1210714 12795a powerpc64le-linux-gnu/math/libm.so
After:
582292 844 12 583148 8e5ec aarch64-linux-gnu/math/libm.so
975133 1076 12 976221 ee55d x86_64-linux-gnu/math/libm.so
1203586 5608 368 1209562 1274da powerpc64le-linux-gnu/math/libm.so
Reviewed-by: Andreas K. Huettel <dilfridge@gentoo.org>
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 999f0cc..43e0e36 100644 --- a/math/Makefile +++ b/math/Makefile @@ -369,6 +369,7 @@ type-float-routines := \ e_sincoshf_data \ math_errf \ s_asincoshf_data \ + s_asincospif_data \ s_sincosf_data \ s_sincospif_data \ # type-float-routines |