Remove unneeded stubs for k_rem_pio2l.
authorPaul E. Murphy <murphyp@linux.vnet.ibm.com>
Thu, 25 Aug 2016 22:25:40 +0000 (17:25 -0500)
committerPaul E. Murphy <murphyp@linux.vnet.ibm.com>
Thu, 1 Sep 2016 14:31:06 +0000 (09:31 -0500)
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.

ChangeLog
math/Makefile
math/k_rem_pio2l.c [deleted file]
sysdeps/generic/math_private.h
sysdeps/i386/fpu/k_rem_pio2l.c [deleted file]
sysdeps/ia64/fpu/k_rem_pio2l.c [deleted file]
sysdeps/m68k/m680x0/fpu/k_rem_pio2l.c [deleted file]
sysdeps/x86_64/fpu/k_rem_pio2l.c [deleted file]

index 9f25a82..fa9394d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index c0d7ff0..6a90a36 100644 (file)
@@ -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 (file)
index 01bf158..0000000
+++ /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)
index cf1865d..24adcfb 100644 (file)
@@ -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 (file)
index 1347b04..0000000
+++ /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 (file)
index 41254ae..0000000
+++ /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 (file)
index 1347b04..0000000
+++ /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 (file)
index eea55a9..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/*  Not needed.  */