diff options
author | Joseph Myers <joseph@codesourcery.com> | 2018-06-01 17:25:12 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2018-06-01 17:25:12 +0000 |
commit | 0d2163ebf2fbedda09fdebe33243441d89f68b05 (patch) | |
tree | 2ed865f0b161db0899aedf8af2d89fac3d191d3b /soft-fp/Makefile | |
parent | 104502102c6fa322515ba0bb3c95c05c3185da7a (diff) | |
download | glibc-0d2163ebf2fbedda09fdebe33243441d89f68b05.tar glibc-0d2163ebf2fbedda09fdebe33243441d89f68b05.tar.gz glibc-0d2163ebf2fbedda09fdebe33243441d89f68b05.tar.bz2 glibc-0d2163ebf2fbedda09fdebe33243441d89f68b05.zip |
Make powerpc-nofpu __sqrtsf2, __sqrtdf2 compat symbols (bug 18473).
powerpc-nofpu libc exports __sqrtsf2 and __sqrtdf2 symbols. The
export of these soft-fp symbols is a mistake; they aren't part of the
libgcc interface and GCC will never generate code that calls them.
This patch makes them into compat symbols (no code built for static
libc), moving their sources from the generic soft-fp sources to
sysdeps/powerpc/nofpu (the underlying soft-fp FP_SQRT functionality
remains of use to implement actual sqrt public interfaces, such as
sqrtl / sqrtf128 for which it is used on various platforms, but
__sqrt[sdt]f2 are not such interfaces).
Tested with build-many-glibcs.py for relevant platforms.
[BZ #18473]
* soft-fp/sqrttf2.c: Remove file.
* soft-fp/sqrtdf2.c: Move to ....
* sysdeps/powerpc/nofpu/sqrtdf2.c: ... here. Include
<shlib-compat.h>.
(__sqrtdf2): Make conditional on
[SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
symbol.
* soft-fp/sqrtsf2.c: Move to ....
* sysdeps/powerpc/nofpu/sqrtsf2.c: ... here. Include
<shlib-compat.h>.
(__sqrtsf2): Make conditional on
[SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
symbol.
* soft-fp/Makefile (gcc-single-routines): Remove sqrtsf2.
(gcc-double-routines): Remove sqrtdf2.
(gcc-quad-routines): Remove sqrttf2.
* sysdeps/nios2/Makefile [$(subdir) = soft-fp] (sysdep_routines):
Do not filter out sqrtsf2 and sqrtdf2.
* sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
(sysdep_routines): Add sqrtsf2 and sqrtdf2.
Diffstat (limited to 'soft-fp/Makefile')
-rw-r--r-- | soft-fp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/soft-fp/Makefile b/soft-fp/Makefile index b768de1e95..8b1d3eadb5 100644 --- a/soft-fp/Makefile +++ b/soft-fp/Makefile @@ -25,16 +25,16 @@ include ../Makeconfig gcc-single-routines := negsf2 addsf3 subsf3 mulsf3 divsf3 eqsf2 \ lesf2 gesf2 unordsf2 fixsfsi fixunssfsi floatsisf fixsfdi \ - fixunssfdi floatdisf sqrtsf2 floatunsisf floatundisf + fixunssfdi floatdisf floatunsisf floatundisf gcc-double-routines := negdf2 adddf3 subdf3 muldf3 divdf3 eqdf2 \ ledf2 gedf2 unorddf2 fixdfsi fixunsdfsi floatsidf fixdfdi \ - fixunsdfdi floatdidf extendsfdf2 truncdfsf2 sqrtdf2 floatunsidf \ + fixunsdfdi floatdidf extendsfdf2 truncdfsf2 floatunsidf \ floatundidf gcc-quad-routines := negtf2 addtf3 subtf3 multf3 divtf3 eqtf2 \ letf2 getf2 unordtf2 fixtfsi fixunstfsi floatsitf fixtfdi \ fixunstfdi floatditf extendsftf2 trunctfsf2 extenddftf2 \ - trunctfdf2 sqrttf2 floatunsitf floatunditf + trunctfdf2 floatunsitf floatunditf include ../Rules |