From 9b05df325c911f9b86102d4ed9714feda7d0e46f Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 1 Feb 2013 16:32:50 -0800 Subject: [PATCH] Make sincosl call sinl and cosl. Bug: 2748728 Change-Id: Id18070963b91b144758c567ad7ac80758e3a638b --- libm/sincos.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/libm/sincos.c b/libm/sincos.c index e9f6dcc58..891aa317f 100644 --- a/libm/sincos.c +++ b/libm/sincos.c @@ -35,20 +35,17 @@ // Thus we just enforce -O0 when compiling this file. #pragma GCC optimize ("O0") -void sincos(double x, double *psin, double *pcos) -{ - *psin = sin(x); - *pcos = cos(x); +void sincos(double x, double* p_sin, double* p_cos) { + *p_sin = sin(x); + *p_cos = cos(x); } -void sincosf(float x, float *psin, float *pcos) -{ - *psin = sinf(x); - *pcos = cosf(x); +void sincosf(float x, float* p_sinf, float* p_cosf) { + *p_sinf = sinf(x); + *p_cosf = cosf(x); } -void sincosl(long double x, long double *psin, long double *pcos) -{ - *psin = sin(x); - *pcos = cos(x); +void sincosl(long double x, long double* p_sinl, long double* p_cosl) { + *p_sinl = sinl(x); + *p_cosl = cosl(x); }