diff options
author | Andreas Schwab <schwab@redhat.com> | 2009-08-26 12:04:34 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2009-08-26 12:04:34 +0200 |
commit | 19fe1be84e6f775e3a7f4cd03b093338d6a317bf (patch) | |
tree | 1d28740af54a3d9194373f7f561baf579c3a8f44 /sysdeps/i386 | |
parent | bc9dd948ffc9cf1992d3e77e753789ab897e3dc6 (diff) | |
parent | 2df4be8c3545f6158e468660a73f794573fb6f07 (diff) | |
download | glibc-19fe1be84e6f775e3a7f4cd03b093338d6a317bf.tar glibc-19fe1be84e6f775e3a7f4cd03b093338d6a317bf.tar.gz glibc-19fe1be84e6f775e3a7f4cd03b093338d6a317bf.tar.bz2 glibc-19fe1be84e6f775e3a7f4cd03b093338d6a317bf.zip |
Merge commit 'origin/master' into fedora/master
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/fpu/bits/mathinline.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index a786cc69cd..8005997520 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -1,5 +1,5 @@ /* Inline math functions for i387. - Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2003,2004,2006,2007 + Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2003,2004,2006,2007,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by John C. Bowman <bowman@math.ualberta.ca>, 1995. @@ -153,6 +153,10 @@ __NTH (__signbitl (long double __x)) #if ((!defined __NO_MATH_INLINES || defined __LIBC_INTERNAL_MATH_INLINES) \ && defined __OPTIMIZE__) +/* The inline functions do not set errno or raise necessarily the + correct exceptions. */ +# undef math_errhandling + /* A macro to define float, double, and long double versions of various math functions for the ix87 FPU. FUNC is the function name (which will be suffixed with f and l for the float and long double version, |