Module Name: src
Committed By: tsutsui
Date: Thu Jan 27 13:42:10 UTC 2011
Modified Files:
src/sys/arch/mips/include: ieeefp.h
Log Message:
Fix swapped comments.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mips/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/mips/include/ieeefp.h
diff -u src/sys/arch/mips/include/ieeefp.h:1.5 src/sys/arch/mips/include/ieeefp.h:1.6
--- src/sys/arch/mips/include/ieeefp.h:1.5 Tue Aug 5 16:47:42 2008
+++ src/sys/arch/mips/include/ieeefp.h Thu Jan 27 13:42:09 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: ieeefp.h,v 1.5 2008/08/05 16:47:42 matt Exp $ */
+/* $NetBSD: ieeefp.h,v 1.6 2011/01/27 13:42:09 tsutsui Exp $ */
/*
* Written by J.T. Conklin, Apr 11, 1995
@@ -16,9 +16,9 @@
typedef int fexcept_t;
#define FE_INEXACT 0x01 /* imprecise (loss of precision) */
-#define FE_UNDERFLOW 0x02 /* divide-by-zero exception */
+#define FE_UNDERFLOW 0x02 /* underflow exception */
#define FE_OVERFLOW 0x04 /* overflow exception */
-#define FE_DIVBYZERO 0x08 /* underflow exception */
+#define FE_DIVBYZERO 0x08 /* divide-by-zero exception */
#define FE_INVALID 0x10 /* invalid operation exception */
#define FE_ALL_EXCEPT 0x1f