From bf972c9dfcda9f95e337c6d4586abcc3bdf46561 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 26 Sep 2011 13:29:01 +0200 Subject: Fix parse error in bits/mathinline.h with --std=c99 --- ChangeLog | 4 ++++ sysdeps/x86_64/fpu/bits/mathinline.h | 16 ++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 693745fcf6..1047cce2bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-09-26 Andreas Schwab + + * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm. + 2011-09-21 Chung-Lin Tang Maxim Kuvyrkov Joseph Myers diff --git a/sysdeps/x86_64/fpu/bits/mathinline.h b/sysdeps/x86_64/fpu/bits/mathinline.h index b63ab12eb3..780f8786dd 100644 --- a/sysdeps/x86_64/fpu/bits/mathinline.h +++ b/sysdeps/x86_64/fpu/bits/mathinline.h @@ -73,7 +73,7 @@ __MATH_INLINE long int __NTH (lrintf (float __x)) { long int __res; - asm ("cvtss2si %1, %0" : "=r" (__res) : "xm" (__x)); + __asm ("cvtss2si %1, %0" : "=r" (__res) : "xm" (__x)); return __res; } # endif @@ -82,7 +82,7 @@ __MATH_INLINE long int __NTH (lrint (double __x)) { long int __res; - asm ("cvtsd2si %1, %0" : "=r" (__res) : "xm" (__x)); + __asm ("cvtsd2si %1, %0" : "=r" (__res) : "xm" (__x)); return __res; } # endif @@ -91,14 +91,14 @@ __MATH_INLINE long long int __NTH (llrintf (float __x)) { long long int __res; - asm ("cvtss2si %1, %0" : "=r" (__res) : "xm" (__x)); + __asm ("cvtss2si %1, %0" : "=r" (__res) : "xm" (__x)); return __res; } __MATH_INLINE long long int __NTH (llrint (double __x)) { long long int __res; - asm ("cvtsd2si %1, %0" : "=r" (__res) : "xm" (__x)); + __asm ("cvtsd2si %1, %0" : "=r" (__res) : "xm" (__x)); return __res; } # endif @@ -108,13 +108,13 @@ __NTH (llrint (double __x)) __MATH_INLINE float __NTH (fmaxf (float __x, float __y)) { - asm ("maxss %1, %0" : "+x" (__x) : "xm" (__y)); + __asm ("maxss %1, %0" : "+x" (__x) : "xm" (__y)); return __x; } __MATH_INLINE double __NTH (fmax (double __x, double __y)) { - asm ("maxsd %1, %0" : "+x" (__x) : "xm" (__y)); + __asm ("maxsd %1, %0" : "+x" (__x) : "xm" (__y)); return __x; } @@ -122,13 +122,13 @@ __NTH (fmax (double __x, double __y)) __MATH_INLINE float __NTH (fminf (float __x, float __y)) { - asm ("minss %1, %0" : "+x" (__x) : "xm" (__y)); + __asm ("minss %1, %0" : "+x" (__x) : "xm" (__y)); return __x; } __MATH_INLINE double __NTH (fmin (double __x, double __y)) { - asm ("minsd %1, %0" : "+x" (__x) : "xm" (__y)); + __asm ("minsd %1, %0" : "+x" (__x) : "xm" (__y)); return __x; } # endif -- cgit 1.4.1