Module Name:    src
Committed By:   christos
Date:           Tue Mar 20 23:57:57 UTC 2012

Modified Files:
        src/sys/arch/sparc/include: ieeefp.h

Log Message:
make fp_except unsigned


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/sparc/include/ieeefp.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/sparc/include/ieeefp.h
diff -u src/sys/arch/sparc/include/ieeefp.h:1.7 src/sys/arch/sparc/include/ieeefp.h:1.8
--- src/sys/arch/sparc/include/ieeefp.h:1.7	Fri May 20 17:42:49 2011
+++ src/sys/arch/sparc/include/ieeefp.h	Tue Mar 20 19:57:57 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: ieeefp.h,v 1.7 2011/05/20 21:42:49 nakayama Exp $	*/
+/*	$NetBSD: ieeefp.h,v 1.8 2012/03/20 23:57:57 christos Exp $	*/
 
 /*
  * Written by J.T. Conklin, Apr 6, 1995
@@ -27,7 +27,7 @@
 
 #if !defined(_ISOC99_SOURCE)
 
-typedef int fp_except;
+typedef unsigned int fp_except;
 #define FP_X_IMP	FE_INEXACT	/* imprecise (loss of precision) */
 #define FP_X_DZ		FE_DIVBYZERO	/* divide-by-zero exception */
 #define FP_X_UFL	FE_UNDERFLOW	/* underflow exception */

Reply via email to