diff options
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | math/Makefile | 6 | ||||
-rw-r--r-- | math/k_rem_pio2l.c | 15 | ||||
-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 |
8 files changed, 18 insertions, 28 deletions
@@ -1,5 +1,20 @@ 2016-09-01 Paul E. Murphy <murphyp@linux.vnet.ibm.com> + * math/Makefile (libm-calls): Remove k_rem_pio2F. + (type-double-routines): Add k_rem_pio2. + (type-float-routines): Add k_rem_pio2f. + + * sysdeps/generic/math_private.h: + (__kernel_rem_pio2l): Removed. + + * math/k_rem_pio2l.c: Removed. + * sysdeps/i386/fpu/k_rem_pio2l.c: Removed. + * sysdeps/ia64/fpu/k_rem_pio2l.c: Removed. + * sysdeps/m68k/m680x0/fpu/k_rem_pio2l.c: Removed. + * sysdeps/x86_64/fpu/k_rem_pio2l.c: Removed. + +2016-09-01 Paul E. Murphy <murphyp@linux.vnet.ibm.com> + * math/Makefile (gen-libm-calls): Add s_fmin (libm-calls): Remove above. diff --git a/math/Makefile b/math/Makefile index c0d7ff0..6a90a36 100644 --- a/math/Makefile +++ b/math/Makefile @@ -56,7 +56,7 @@ libm-calls = \ e_hypotF e_j0F e_j1F e_jnF e_lgammaF_r e_logF e_log10F e_powF \ e_rem_pio2F e_remainderF e_scalbF e_sinhF e_sqrtF e_gammaF_r \ e_ilogbF \ - k_cosF k_rem_pio2F k_sinF k_tanF s_asinhF s_atanF s_cbrtF \ + k_cosF k_sinF k_tanF s_asinhF s_atanF s_cbrtF \ s_ceilF s_cosF s_erfF s_expm1F s_fabsF \ s_floorF s_log1pF w_log1pF s_logbF \ s_nextafterF s_nexttowardF s_rintF s_scalblnF w_scalblnF \ @@ -99,11 +99,11 @@ type-ldouble-yes := ldouble type-double-suffix := type-double-routines := branred doasin dosincos halfulp mpa mpatan2 \ mpatan mpexp mplog mpsqrt mptan sincos32 slowexp \ - slowpow sincostab + slowpow sincostab k_rem_pio2 # float support type-float-suffix := f -type-float-routines := +type-float-routines := k_rem_pio2f # Apply suffix to each type in arg 1 diff --git a/math/k_rem_pio2l.c b/math/k_rem_pio2l.c deleted file mode 100644 index 01bf158..0000000 --- a/math/k_rem_pio2l.c +++ /dev/null @@ -1,15 +0,0 @@ -#include <math.h> -#include <math_private.h> -#include <stdio.h> -#include <errno.h> - -int -__kernel_rem_pio2l (long double *x, long double *y, int e0, int nx, int prec, - const int *ipio2) -{ - fputs ("__kernel_rem_pio2l not implemented\n", stderr); - __set_errno (ENOSYS); - return 0.0; -} - -stub_warning (__kernel_rem_pio2l) 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. */ |