]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix parse error in bits/mathinline.h with --std=c99
authorAndreas Schwab <schwab@redhat.com>
Mon, 31 Aug 2009 09:52:17 +0000 (11:52 +0200)
committerAndreas Schwab <schwab@redhat.com>
Mon, 31 Aug 2009 15:26:14 +0000 (17:26 +0200)
ChangeLog
sysdeps/x86_64/fpu/bits/mathinline.h

index 2f6de8b9d782565b686becc84c17ff24cadf49ca..d230db7ad8fe802225554508dce79b63364b49fe 100644 (file)
--- 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]
index 8d4850dfc00b062ba3d9caf59787a851a5de463d..ece0f026782bb07c100c85a761ad8ff9037fd3c3 100644 (file)
@@ -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