]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix type of fpu_control_t.
authorAndreas Jaeger <aj@suse.de>
Wed, 5 Jul 2000 15:37:11 +0000 (15:37 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 5 Jul 2000 15:37:11 +0000 (15:37 +0000)
(_FPU_GETCW): Remove extra colon.
Patch by Ralf Baechle <ralf@uni-koblenz.de>.

sysdeps/mips/fpu_control.h

index 789a614973accf75d43c045749aefbae5fa91d35..c5c83e044288db6d3ec92409f7ff61d8b00eba45 100644 (file)
@@ -1,5 +1,5 @@
 /* FPU control word bits.  Mips version.
-   Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Olaf Flebbe and Ralf Baechle.
 
 #define _FPU_IEEE     0x00000F80
 
 /* Type of the control word.  */
-typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__HI__)));
+typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
 
 /* Macros for accessing the hardware control word.  */
-#define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw) : )
+#define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw))
 #define _FPU_SETCW(cw) __asm__ ("ctc1 %0,$31" : : "r" (cw))
 
 /* Default control word set at startup.  */