mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
Fix PLT use for feraiseexcept on x86_64
This commit is contained in:
parent
d9a8d0abcc
commit
8f3b1ffefa
@ -1,3 +1,8 @@
|
||||
2011-10-19 Andreas Schwab <schwab@redhat.com>
|
||||
|
||||
* sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
|
||||
__feraiseexcept instead of feraiseexcept.
|
||||
|
||||
2011-10-18 Ulrich Drepper <drepper@gmail.com>
|
||||
|
||||
* math/math_private.h: Define defaults for libc_fetestexcept and
|
||||
|
@ -192,7 +192,7 @@ do { \
|
||||
unsigned int mxcsr; \
|
||||
asm volatile ("stmxcsr %0" : "=m" (*&mxcsr)); \
|
||||
asm volatile ("ldmxcsr %0" : : "m" ((e)->__mxcsr)); \
|
||||
feraiseexcept (mxcsr & FE_ALL_EXCEPT); \
|
||||
__feraiseexcept (mxcsr & FE_ALL_EXCEPT); \
|
||||
} while (0)
|
||||
#undef libc_feupdateenvf
|
||||
#define libc_feupdateenvf(e) libc_feupdateenv (e)
|
||||
|
Loading…
Reference in New Issue
Block a user