From: Roland McGrath Date: Mon, 19 Feb 1996 23:06:16 +0000 (+0000) Subject: Sun Feb 18 12:13:07 1996 Andreas Schwab X-Git-Tag: glibc-2.16-ports-before-merge~3883 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6103f53bab2f708750db71f183e116db857a59e8;p=thirdparty%2Fglibc.git Sun Feb 18 12:13:07 1996 Andreas Schwab * sysdeps/unix/sysv/linux/m68k/fpu_control.h (_FPU_SETCW): Corrected. --- diff --git a/sysdeps/unix/sysv/linux/m68k/fpu_control.h b/sysdeps/unix/sysv/linux/m68k/fpu_control.h index 0bbbb089163..0b3623d9a3f 100644 --- a/sysdeps/unix/sysv/linux/m68k/fpu_control.h +++ b/sysdeps/unix/sysv/linux/m68k/fpu_control.h @@ -95,7 +95,7 @@ typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__))); /* Macros for accessing the hardware control word. */ #define _FPU_GETCW(cw) __asm__ ("fmove%.l %!, %0" : "=dm" (cw)) -#define _FPU_SETCW(cw) __asm__ ("fmove%.l %0, %!" : "dm" (cw)) +#define _FPU_SETCW(cw) __asm__ volatile ("fmove%.l %0, %!" : : "dm" (cw)) /* Default control word set at startup. */ extern fpu_control_t __fpu_control;