summaryrefslogtreecommitdiffstats
path: root/lib/libc/softfloat/bits32/softfloat.c
diff options
context:
space:
mode:
authordas <das@FreeBSD.org>2012-01-16 04:05:53 +0000
committerdas <das@FreeBSD.org>2012-01-16 04:05:53 +0000
commitd6b9b99e3b746f56d63b97b226e6828b26953d3a (patch)
treef49f535a2f2db035f8401e540a6103d8e9ea9c6a /lib/libc/softfloat/bits32/softfloat.c
parentb2eac838ccdcf3c8f2a5f094f46aaf83b3b8538f (diff)
downloadFreeBSD-src-d6b9b99e3b746f56d63b97b226e6828b26953d3a.zip
FreeBSD-src-d6b9b99e3b746f56d63b97b226e6828b26953d3a.tar.gz
Convert softfloat to use the standard exception flag and rounding macros
in fenv.h instead of the non-standard and incomplete ones in ieeefp.h. Thanks to Ian Lepore for testing this patch.
Diffstat (limited to 'lib/libc/softfloat/bits32/softfloat.c')
-rw-r--r--lib/libc/softfloat/bits32/softfloat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/softfloat/bits32/softfloat.c b/lib/libc/softfloat/bits32/softfloat.c
index 7785c4e..ad7c016 100644
--- a/lib/libc/softfloat/bits32/softfloat.c
+++ b/lib/libc/softfloat/bits32/softfloat.c
@@ -77,8 +77,8 @@ __FBSDID("$FreeBSD$");
Floating-point rounding mode and exception flags.
-------------------------------------------------------------------------------
*/
-fp_rnd_t float_rounding_mode = float_round_nearest_even;
-fp_except float_exception_flags = 0;
+int float_rounding_mode = float_round_nearest_even;
+int float_exception_flags = 0;
/*
-------------------------------------------------------------------------------
OpenPOWER on IntegriCloud