From 3fe4dc4156af9255fe86b5040c2538e9d7f5459d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 15 Jul 1999 18:26:25 +0000 Subject: Update. 1999-07-15 Jakub Jelinek * math/Makefile: Add t_sincosl and k_sincosl support routines. * math/math_private.h (__kernel_sincosl): New declaration. * sysdeps/generic/t_sincosl.c: New file. * sysdeps/generic/k_sincosl.c: New file. * sysdeps/ieee754/ldbl-128/k_cosl.c: New file. * sysdeps/ieee754/ldbl-128/k_sinl.c: New file. * sysdeps/ieee754/ldbl-128/k_sincosl.c: New file. * sysdeps/ieee754/ldbl-128/t_sincosl.c: New file. * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: New file. * sysdeps/ieee754/ldbl-128/s_sincosl.c (__sincosl): Use __kernel_sincosl. * sysdeps/ieee754/ldbl-128/math_ldbl.h (GET_LDOUBLE_LSW64): New definition. --- math/Makefile | 3 ++- math/math_private.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'math') diff --git a/math/Makefile b/math/Makefile index e1b3431d19..d5434f79df 100644 --- a/math/Makefile +++ b/math/Makefile @@ -61,7 +61,8 @@ libm-routines = $(strip $(libm-support) $(libm-calls) \ $(patsubst %_rf,%f_r,$(libm-calls:=f)) \ $(long-m-$(long-double-fcts))) long-m-routines = $(patsubst %_rl,%l_r,$(libm-calls:=l)) -long-m-yes = $(long-m-routines) +long-m-support = t_sincosl k_sincosl +long-m-yes = $(long-m-routines) $(long-m-support) distribute += $(long-m-yes:=.c) # These functions are in libc instead of libm because __printf_fp diff --git a/math/math_private.h b/math/math_private.h index 35e3e4e7ca..29dbb46758 100644 --- a/math/math_private.h +++ b/math/math_private.h @@ -264,6 +264,8 @@ extern long double __ieee754_scalbl __P((long double,long double)); extern long double __kernel_sinl __P((long double,long double,int)); extern long double __kernel_cosl __P((long double,long double)); extern long double __kernel_tanl __P((long double,long double,int)); +extern void __kernel_sincosl __P((long double,long double, + long double *,long double *, int)); extern int __kernel_rem_pio2l __P((long double*,long double*,int,int, int,const int*)); -- cgit 1.4.1