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 2f6de8b..d230db7 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 8d4850d..ece0f02 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