]> sourceware.org Git - glibc.git/commitdiff
Fix PLT use for feraiseexcept on x86_64
authorAndreas Schwab <schwab@redhat.com>
Wed, 19 Oct 2011 09:16:57 +0000 (11:16 +0200)
committerAndreas Schwab <schwab@redhat.com>
Wed, 19 Oct 2011 11:03:31 +0000 (13:03 +0200)
ChangeLog
sysdeps/x86_64/fpu/math_private.h

index 852d45d80023ff47148d7e7181c3522a4eb3149a..707c285eed7d652dea106497deb30113cd7bcf22 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index de4f1210757d4e261c7ae203db87aedd414e8d0c..d3d84cfda41dec5f3c40b84d8c698b1896719099 100644 (file)
@@ -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)
This page took 0.052278 seconds and 5 git commands to generate.