From cc46c92d6b7d03aedb6c06364376c17dc9e0feb3 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 4 Jun 2000 16:11:43 +0000 Subject: Update. 2000-06-01 Jakub Jelinek * libc/sysdeps/alpha/fpu/bits/mathinline.h: Add __THROW to all inlines to match prototypes in mathcalls.h. * libc/sysdeps/i386/fpu/bits/mathinline.h: Likewise. * libc/sysdeps/m68k/fpu/bits/mathinline.h: Likewise. * libc/sysdeps/powerpc/fpu/bits/mathinline.h: Likewise. * libc/sysdeps/sparc/fpu/bits/mathinline.h: Likewise. * sysdeps/powerpc/dl-start.S: Close open comment. --- sysdeps/sparc/fpu/bits/mathinline.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sysdeps/sparc') diff --git a/sysdeps/sparc/fpu/bits/mathinline.h b/sysdeps/sparc/fpu/bits/mathinline.h index 2c4b2823de..7adebd3ec0 100644 --- a/sysdeps/sparc/fpu/bits/mathinline.h +++ b/sysdeps/sparc/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for SPARC. - Copyright (C) 1999 Free Software Foundation, Inc. + Copyright (C) 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek . @@ -144,7 +144,7 @@ __signbitl (long double __x) #endif /* sparc64 */ __MATH_INLINE double -sqrt(double __x) +sqrt(double __x) __THROW { register double __r; __asm ("fsqrtd %1,%0" : "=f" (__r) : "f" (__x)); @@ -152,7 +152,7 @@ sqrt(double __x) } __MATH_INLINE float -sqrtf(float __x) +sqrtf(float __x) __THROW { register float __r; __asm ("fsqrts %1,%0" : "=f" (__r) : "f" (__x)); @@ -161,7 +161,7 @@ sqrtf(float __x) #if __WORDSIZE == 64 __MATH_INLINE long double -sqrtl(long double __x) +sqrtl(long double __x) __THROW { long double __r; extern void _Qp_sqrt(long double *, __const__ long double *); -- cgit 1.4.1