diff options
Diffstat (limited to 'sysdeps/s390/fpu/bits/mathinline.h')
-rw-r--r-- | sysdeps/s390/fpu/bits/mathinline.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/s390/fpu/bits/mathinline.h b/sysdeps/s390/fpu/bits/mathinline.h index 1d35746e8b..633bd0beb2 100644 --- a/sysdeps/s390/fpu/bits/mathinline.h +++ b/sysdeps/s390/fpu/bits/mathinline.h @@ -71,7 +71,7 @@ __NTH (__ieee754_sqrt (double x)) { double res; - asm ( "sqdbr %0,%1" : "=f" (res) : "f" (x) ); + __asm__ ( "sqdbr %0,%1" : "=f" (res) : "f" (x) ); return res; } @@ -80,7 +80,7 @@ __NTH (__ieee754_sqrtf (float x)) { float res; - asm ( "sqebr %0,%1" : "=f" (res) : "f" (x) ); + __asm__ ( "sqebr %0,%1" : "=f" (res) : "f" (x) ); return res; } @@ -90,7 +90,7 @@ __NTH (sqrtl (long double __x)) { long double res; - asm ( "sqxbr %0,%1" : "=f" (res) : "f" (__x) ); + __asm__ ( "sqxbr %0,%1" : "=f" (res) : "f" (__x) ); return res; } # endif /* !__NO_LONG_DOUBLE_MATH */ |