]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/i386/bits/mathinline.h
update
[l4.git] / l4 / pkg / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / i386 / bits / mathinline.h
index 5caf733538b2d54ee2d39de47ff5eabe3ea75a57..9e67182d5f2e825dad5959fd357ed6787cb7b441 100644 (file)
@@ -206,7 +206,7 @@ __NTH (__signbitl (long double __x))
   __MATH_INLINE float_type __NTH (func (float_type __x))                     \
   {                                                                          \
     register float_type __result;                                            \
-    __asm__ __volatile__ (op : "=t" (__result) : params);                            \
+    __asm__ __volatile__ (op : "=t" (__result) : params);                    \
     return __result;                                                         \
   }
 
@@ -529,8 +529,8 @@ __inline_mathcodeNP (tanh, __x, \
 
 __inline_mathcodeNP (floor, __x, \
   register long double __value;                                                      \
-  __volatile unsigned short int __cw;                                        \
-  __volatile unsigned short int __cwtmp;                                     \
+  __volatile__ unsigned short int __cw;                                              \
+  __volatile__ unsigned short int __cwtmp;                                   \
   __asm__ __volatile__ ("fnstcw %0" : "=m" (__cw));                                  \
   __cwtmp = (__cw & 0xf3ff) | 0x0400; /* rounding down */                    \
   __asm__ __volatile__ ("fldcw %0" : : "m" (__cwtmp));                       \
@@ -540,8 +540,8 @@ __inline_mathcodeNP (floor, __x, \
 
 __inline_mathcodeNP (ceil, __x, \
   register long double __value;                                                      \
-  __volatile unsigned short int __cw;                                        \
-  __volatile unsigned short int __cwtmp;                                     \
+  __volatile__ unsigned short int __cw;                                              \
+  __volatile__ unsigned short int __cwtmp;                                   \
   __asm__ __volatile__ ("fnstcw %0" : "=m" (__cw));                                  \
   __cwtmp = (__cw & 0xf3ff) | 0x0800; /* rounding up */                              \
   __asm__ __volatile__ ("fldcw %0" : : "m" (__cwtmp));                       \