GNU C Library master sources branch, master, updated. glibc-2.14-394-g8f3b1ff
schwab@sourceware.org
schwab@sourceware.org
Wed Oct 19 11:04:00 GMT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".
The branch, master has been updated
via 8f3b1ffefa61275315891770944bdbf5079e04ed (commit)
from d9a8d0abcc976f7ffe319a376ddd3497486e9726 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=8f3b1ffefa61275315891770944bdbf5079e04ed
commit 8f3b1ffefa61275315891770944bdbf5079e04ed
Author: Andreas Schwab <schwab@redhat.com>
Date: Wed Oct 19 11:16:57 2011 +0200
Fix PLT use for feraiseexcept on x86_64
diff --git a/ChangeLog b/ChangeLog
index 852d45d..707c285 100644
--- 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
diff --git a/sysdeps/x86_64/fpu/math_private.h b/sysdeps/x86_64/fpu/math_private.h
index de4f121..d3d84cf 100644
--- a/sysdeps/x86_64/fpu/math_private.h
+++ b/sysdeps/x86_64/fpu/math_private.h
@@ -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)
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
sysdeps/x86_64/fpu/math_private.h | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
hooks/post-receive
--
GNU C Library master sources
More information about the Glibc-cvs
mailing list