diff options
author | Anssi Hannula <anssi.hannula@bitwise.fi> | 2020-01-27 12:45:11 +0200 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2020-12-18 12:10:31 +0530 |
commit | 69a7ca7705626177e09d2fec6cf571f2015b76fc (patch) | |
tree | e37bd9f3764b8e028e8b196e6425b602254aa336 /sysdeps/generic/math_private.h | |
parent | f67f9c9af228f6b84579cb8c86312d3a7a206a55 (diff) | |
download | glibc-69a7ca7705626177e09d2fec6cf571f2015b76fc.tar.gz glibc-69a7ca7705626177e09d2fec6cf571f2015b76fc.tar.xz glibc-69a7ca7705626177e09d2fec6cf571f2015b76fc.zip |
ieee754: Remove unused __sin32 and __cos32
The __sin32 and __cos32 functions were only used in the now removed slow path of asin and acos.
Diffstat (limited to 'sysdeps/generic/math_private.h')
-rw-r--r-- | sysdeps/generic/math_private.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/generic/math_private.h b/sysdeps/generic/math_private.h index 9296324d24..10a6fde28d 100644 --- a/sysdeps/generic/math_private.h +++ b/sysdeps/generic/math_private.h @@ -202,8 +202,6 @@ extern int __branred (double __x, double *__a, double *__aa); extern void __doasin (double __x, double __dx, double __v[]); extern void __dubsin (double __x, double __dx, double __v[]); extern void __dubcos (double __x, double __dx, double __v[]); -extern double __sin32 (double __x, double __res, double __res1); -extern double __cos32 (double __x, double __res, double __res1); extern double __mpsin (double __x, double __dx, bool __range_reduce); extern double __mpcos (double __x, double __dx, bool __range_reduce); extern void __docos (double __x, double __dx, double __v[]); |