This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.10-318-gc2735e9


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  c2735e958acc6a69daab71fdc463564860f20794 (commit)
      from  b5c03e105cb445a7dc08289e7e6751434c3262ce (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=c2735e958acc6a69daab71fdc463564860f20794

commit c2735e958acc6a69daab71fdc463564860f20794
Author: Andreas Schwab <schwab@redhat.com>
Date:   Mon Aug 31 11:52:17 2009 +0200

    Fix parse error in bits/mathinline.h with --std=c99

diff --git a/ChangeLog b/ChangeLog
index 2f6de8b..d230db7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-31  Andreas Schwab  <schwab@redhat.com>
+
+	* sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
+
 2009-08-31  Ulrich Drepper  <drepper@redhat.com>
 
 	[BZ #10560]
diff --git a/sysdeps/x86_64/fpu/bits/mathinline.h b/sysdeps/x86_64/fpu/bits/mathinline.h
index 8d4850d..ece0f02 100644
--- a/sysdeps/x86_64/fpu/bits/mathinline.h
+++ b/sysdeps/x86_64/fpu/bits/mathinline.h
@@ -36,14 +36,14 @@ __MATH_INLINE int
 __NTH (__signbitf (float __x))
 {
   int __m;
-  asm ("pmovmskb %1, %0" : "=r" (__m) : "x" (__x));
+  __asm ("pmovmskb %1, %0" : "=r" (__m) : "x" (__x));
   return __m & 0x8;
 }
 __MATH_INLINE int
 __NTH (__signbit (double __x))
 {
   int __m;
-  asm ("pmovmskb %1, %0" : "=r" (__m) : "x" (__x));
+  __asm ("pmovmskb %1, %0" : "=r" (__m) : "x" (__x));
   return __m & 0x80;
 }
 __MATH_INLINE int

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                            |    4 ++++
 sysdeps/x86_64/fpu/bits/mathinline.h |    4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]