diff options
Diffstat (limited to 'sysdeps/s390/fpu/fpu_control.h')
-rw-r--r-- | sysdeps/s390/fpu/fpu_control.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/s390/fpu/fpu_control.h b/sysdeps/s390/fpu/fpu_control.h index 1f663b37d1..f87c32e97b 100644 --- a/sysdeps/s390/fpu/fpu_control.h +++ b/sysdeps/s390/fpu/fpu_control.h @@ -34,8 +34,8 @@ typedef unsigned int fpu_control_t; /* Macros for accessing the hardware control word. */ -#define _FPU_GETCW(cw) __asm__ volatile ("efpc %0,0" : "=d" (cw)) -#define _FPU_SETCW(cw) __asm__ volatile ("sfpc %0,0" : : "d" (cw)) +#define _FPU_GETCW(cw) __asm__ __volatile__ ("efpc %0,0" : "=d" (cw)) +#define _FPU_SETCW(cw) __asm__ __volatile__ ("sfpc %0,0" : : "d" (cw)) /* Default control word set at startup. */ extern fpu_control_t __fpu_control; |