Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/mips/include Fix swapped comments.
details: https://anonhg.NetBSD.org/src/rev/e98f89d0e266
branches: trunk
changeset: 761435:e98f89d0e266
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Thu Jan 27 13:42:09 2011 +0000
description:
Fix swapped comments.
diffstat:
sys/arch/mips/include/ieeefp.h | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (21 lines):
diff -r f2ecc1c6cf97 -r e98f89d0e266 sys/arch/mips/include/ieeefp.h
--- a/sys/arch/mips/include/ieeefp.h Thu Jan 27 12:19:48 2011 +0000
+++ b/sys/arch/mips/include/ieeefp.h Thu Jan 27 13:42:09 2011 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index