diff options
author | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-08-25 17:25:40 -0500 |
---|---|---|
committer | Paul E. Murphy <murphyp@linux.vnet.ibm.com> | 2016-09-01 09:31:06 -0500 |
commit | 2bad840e9d4b3e714b4f20ad6b46a76e7be1d8fe (patch) | |
tree | a386736c845323bf4b79240b62b57b5120f5f59e /sysdeps | |
parent | f306ea1ada5fa0bdd87f070aa58162039676fa06 (diff) | |
download | glibc-2bad840e9d4b3e714b4f20ad6b46a76e7be1d8fe.zip glibc-2bad840e9d4b3e714b4f20ad6b46a76e7be1d8fe.tar.gz glibc-2bad840e9d4b3e714b4f20ad6b46a76e7be1d8fe.tar.bz2 |
Remove unneeded stubs for k_rem_pio2l.
This is only used for the float and double variants.
Instead, just add it to the type specific list of files,
and remove all stubs, and remove the declaration from
math_private.h.
I verified x86_64, i486, ia64, m68k, and ppc64 build.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/math_private.h | 2 | ||||
-rw-r--r-- | sysdeps/i386/fpu/k_rem_pio2l.c | 3 | ||||
-rw-r--r-- | sysdeps/ia64/fpu/k_rem_pio2l.c | 1 | ||||
-rw-r--r-- | sysdeps/m68k/m680x0/fpu/k_rem_pio2l.c | 3 | ||||
-rw-r--r-- | sysdeps/x86_64/fpu/k_rem_pio2l.c | 1 |
5 files changed, 0 insertions, 10 deletions
diff --git a/sysdeps/generic/math_private.h b/sysdeps/generic/math_private.h index cf1865d..24adcfb 100644 --- a/sysdeps/generic/math_private.h +++ b/sysdeps/generic/math_private.h @@ -317,8 +317,6 @@ extern long double __kernel_cosl (long double,long double); extern long double __kernel_tanl (long double,long double,int); extern void __kernel_sincosl (long double,long double, long double *,long double *, int); -extern int __kernel_rem_pio2l (long double*,long double*,int,int, - int,const int*); #ifndef NO_LONG_DOUBLE /* prototypes required to compile the ldbl-96 support without warnings */ diff --git a/sysdeps/i386/fpu/k_rem_pio2l.c b/sysdeps/i386/fpu/k_rem_pio2l.c deleted file mode 100644 index 1347b04..0000000 --- a/sysdeps/i386/fpu/k_rem_pio2l.c +++ /dev/null @@ -1,3 +0,0 @@ -/* Empty. This file is only meant to avoid compiling the file with the - same name in the libm-ieee754 directory. The code is not used since - there is an assembler version for all users of this file. */ diff --git a/sysdeps/ia64/fpu/k_rem_pio2l.c b/sysdeps/ia64/fpu/k_rem_pio2l.c deleted file mode 100644 index 41254ae..0000000 --- a/sysdeps/ia64/fpu/k_rem_pio2l.c +++ /dev/null @@ -1 +0,0 @@ -/* Not needed. */ diff --git a/sysdeps/m68k/m680x0/fpu/k_rem_pio2l.c b/sysdeps/m68k/m680x0/fpu/k_rem_pio2l.c deleted file mode 100644 index 1347b04..0000000 --- a/sysdeps/m68k/m680x0/fpu/k_rem_pio2l.c +++ /dev/null @@ -1,3 +0,0 @@ -/* Empty. This file is only meant to avoid compiling the file with the - same name in the libm-ieee754 directory. The code is not used since - there is an assembler version for all users of this file. */ diff --git a/sysdeps/x86_64/fpu/k_rem_pio2l.c b/sysdeps/x86_64/fpu/k_rem_pio2l.c deleted file mode 100644 index eea55a9..0000000 --- a/sysdeps/x86_64/fpu/k_rem_pio2l.c +++ /dev/null @@ -1 +0,0 @@ -/* Not needed. */ |