diff options
author | Andreas Schwab <schwab@redhat.com> | 2009-08-31 11:52:17 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2009-08-31 17:26:14 +0200 |
commit | c2735e958acc6a69daab71fdc463564860f20794 (patch) | |
tree | f4dd928c469b312808017111df7ae36b1b9bfa24 /sysdeps | |
parent | b5c03e105cb445a7dc08289e7e6751434c3262ce (diff) | |
download | glibc-c2735e958acc6a69daab71fdc463564860f20794.tar glibc-c2735e958acc6a69daab71fdc463564860f20794.tar.gz glibc-c2735e958acc6a69daab71fdc463564860f20794.tar.bz2 glibc-c2735e958acc6a69daab71fdc463564860f20794.zip |
Fix parse error in bits/mathinline.h with --std=c99
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86_64/fpu/bits/mathinline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/x86_64/fpu/bits/mathinline.h b/sysdeps/x86_64/fpu/bits/mathinline.h index 8d4850dfc0..ece0f02678 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 |