summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMartynas Venckus <martynas@cvs.openbsd.org>2011-04-24 16:57:12 +0000
committerMartynas Venckus <martynas@cvs.openbsd.org>2011-04-24 16:57:12 +0000
commit543db4adf0473f5408be572047fc5eb1ac505c4c (patch)
tree34a9578a98a4e0acab133e1db1f6997793763e18 /sys/arch
parent31d29260a8e2100ecfe0927bc043c738f51d9295 (diff)
Denormalization exception isn't supported on sh4, and setting bit 7
would enable inexact trap instead of setting the sticky bit. OK miod@.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sh/include/ieeefp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/sh/include/ieeefp.h b/sys/arch/sh/include/ieeefp.h
index d114d337036..90f68436c1d 100644
--- a/sys/arch/sh/include/ieeefp.h
+++ b/sys/arch/sh/include/ieeefp.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ieeefp.h,v 1.3 2006/10/11 00:56:35 drahn Exp $ */
+/* $OpenBSD: ieeefp.h,v 1.4 2011/04/24 16:57:11 martynas Exp $ */
/* $NetBSD: ieeefp.h,v 1.3 2002/04/28 17:10:34 uch Exp $ */
/*
@@ -11,7 +11,6 @@
typedef int fp_except;
#define FP_X_INV 0x10 /* invalid operation exception */
-#define FP_X_DNML 0x20 /* denormalization exception */
#define FP_X_DZ 0x08 /* divide-by-zero exception */
#define FP_X_OFL 0x04 /* overflow exception */
#define FP_X_UFL 0x02 /* underflow exception */