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

This commit is contained in:
Andreas Schwab 2009-08-31 11:52:17 +02:00
parent b5c03e105c
commit c2735e958a
2 changed files with 6 additions and 2 deletions

View File

@ -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]

View 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