diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-08 21:44:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-08 21:44:02 +0000 |
commit | 239581f404aba97ce05e7430b3fc20b551e0e777 (patch) | |
tree | 1d72be7eea4c646ef63dfd19bd8c2ce776e5fcf4 /sysdeps | |
parent | 54b497ce383bf3cbe9904ca9473f320ecaff7492 (diff) | |
download | glibc-239581f404aba97ce05e7430b3fc20b551e0e777.tar.gz glibc-239581f404aba97ce05e7430b3fc20b551e0e777.tar.xz glibc-239581f404aba97ce05e7430b3fc20b551e0e777.zip |
Use __NTH instead of __THROW.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ia64/fpu/bits/mathinline.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/ia64/fpu/bits/mathinline.h b/sysdeps/ia64/fpu/bits/mathinline.h index be6a10237c..9bb5f1a710 100644 --- a/sysdeps/ia64/fpu/bits/mathinline.h +++ b/sysdeps/ia64/fpu/bits/mathinline.h @@ -33,19 +33,19 @@ # if __GNUC_PREREQ (2, 8) /* Test for negative number. Used in the signbit() macro. */ __MATH_INLINE int -__signbitf (float __x) __THROW +__NTH (__signbitf (float __x)) { __extension__ union { float __f; int __i; } __u = { __f: __x }; return __u.__i < 0; } __MATH_INLINE int -__signbit (double __x) __THROW +__NTH (__signbit (double __x)) { __extension__ union { double __d; int __i[2]; } __u = { __d: __x }; return __u.__i[1] < 0; } __MATH_INLINE int -__signbitl (long double __x) __THROW +__NTH (__signbitl (long double __x)) { __extension__ union { long double __l; int __i[3]; } __u = { __l: __x }; return (__u.__i[2] & 0x8000) != 0; |