summaryrefslogtreecommitdiff
path: root/sysdeps/x86_64/fpu/bits/mathinline.h
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2009-09-01 10:08:05 +0200
committerAndreas Schwab <schwab@redhat.com>2009-09-01 10:08:05 +0200
commita562fe3cdbb82fae5868e245de31031c19432550 (patch)
tree542c921e7b94c7c35b433f0dce140adbbaf3ec24 /sysdeps/x86_64/fpu/bits/mathinline.h
parent62f946ade44beeabffb8e91c989ff2bd47293e4c (diff)
parentc2735e958acc6a69daab71fdc463564860f20794 (diff)
Merge commit 'origin/master' into fedora/master
Diffstat (limited to 'sysdeps/x86_64/fpu/bits/mathinline.h')
-rw-r--r--sysdeps/x86_64/fpu/bits/mathinline.h4
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