aboutsummaryrefslogtreecommitdiff
path: root/sys/ia64/include/ieeefp.h
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2003-08-11 21:25:19 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2003-08-11 21:25:19 +0000
commit322d6e0236ba0482abfc6803a7abbfa314e93df9 (patch)
treeb7deaf02136494f771ea3f49c25766960d1c7270 /sys/ia64/include/ieeefp.h
parentd10526a03b19493efb494ec7d2bdf6941b915858 (diff)
downloadsrc-322d6e0236ba0482abfc6803a7abbfa314e93df9.tar.gz
src-322d6e0236ba0482abfc6803a7abbfa314e93df9.zip
Cleanup and style(9) fixes. No functional change.
Notes
Notes: svn path=/head/; revision=118798
Diffstat (limited to 'sys/ia64/include/ieeefp.h')
-rw-r--r--sys/ia64/include/ieeefp.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/ia64/include/ieeefp.h b/sys/ia64/include/ieeefp.h
index 418b0aee8307..a97926bdcfd6 100644
--- a/sys/ia64/include/ieeefp.h
+++ b/sys/ia64/include/ieeefp.h
@@ -37,15 +37,12 @@ typedef int fp_except_t;
#define FP_X_OFL IA64_FPSR_TRAP_OD /* overflow exception */
#define FP_X_UFL IA64_FPSR_TRAP_UD /* underflow exception */
#define FP_X_IMP IA64_FPSR_TRAP_ID /* imprecise(inexact) exception */
-#if 0
-#define FP_X_IOV 0 /* integer overflow XXX? */
-#endif
typedef enum {
- FP_RZ=0, /* round to zero (truncate) */
- FP_RM=1, /* round toward negative infinity */
- FP_RN=2, /* round to nearest representable number */
- FP_RP=3 /* round toward positive infinity */
+ FP_RZ=0, /* round to zero (truncate) */
+ FP_RM=1, /* round toward negative infinity */
+ FP_RN=2, /* round to nearest representable number */
+ FP_RP=3 /* round toward positive infinity */
} fp_rnd_t;
#endif /* _MACHINE_IEEEFP_H_ */