mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 15:50:06 +00:00
Fix parse error in bits/mathinline.h with --std=c99
This commit is contained in:
parent
b5c03e105c
commit
c2735e958a
@ -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]
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user