From 31035e80a409cdb92a771880bee64f7327371287 Mon Sep 17 00:00:00 2001 From: Marek Polacek Date: Fri, 17 Aug 2012 23:44:53 +0200 Subject: Quash warning in s_sincosl. --- sysdeps/ieee754/ldbl-96/s_sincosl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/ieee754') diff --git a/sysdeps/ieee754/ldbl-96/s_sincosl.c b/sysdeps/ieee754/ldbl-96/s_sincosl.c index 2858954b32..2a819592c1 100644 --- a/sysdeps/ieee754/ldbl-96/s_sincosl.c +++ b/sysdeps/ieee754/ldbl-96/s_sincosl.c @@ -1,5 +1,5 @@ /* Compute sine and cosine of argument. - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1997. @@ -25,7 +25,7 @@ void __sincosl (long double x, long double *sinx, long double *cosx) { - int32_t se, i0, i1; + int32_t se, i0, i1 __attribute__ ((unused)); /* High word of x. */ GET_LDOUBLE_WORDS (se, i0, i1, x); -- cgit 1.4.1