diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-29 16:59:17 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-12-29 16:59:17 +0000 |
commit | cca61561941a9c9b2cf068fc2e03370efb4a47b1 (patch) | |
tree | 6f5423ee2393152d8e7d286844f99a320693ec0a /sys/lib/libkern/softfloat-specialize.h | |
parent | 1c2334f6fa47d90f6b21649a2db2fbb0508c7d1d (diff) |
Unifdef NO_IEEE in the libkern softfloat code, and put an appropriate rule
in files.alpha to compensate for NO_IEEE kernels.
This will allow the softfloat code to be used by other platforms than alpha.
Diffstat (limited to 'sys/lib/libkern/softfloat-specialize.h')
-rw-r--r-- | sys/lib/libkern/softfloat-specialize.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/lib/libkern/softfloat-specialize.h b/sys/lib/libkern/softfloat-specialize.h index db9fb08b4ed..a9b6f223c19 100644 --- a/sys/lib/libkern/softfloat-specialize.h +++ b/sys/lib/libkern/softfloat-specialize.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softfloat-specialize.h,v 1.1 2002/04/28 20:55:14 pvalchev Exp $ */ +/* $OpenBSD: softfloat-specialize.h,v 1.2 2007/12/29 16:59:16 miod Exp $ */ /* $NetBSD: softfloat-specialize.h,v 1.1 2001/04/26 03:10:47 ross Exp $ */ /* This is a derivative work. */ @@ -79,8 +79,6 @@ Underflow tininess-detection mode, statically initialized to default value. ------------------------------------------------------------------------------- */ -#ifndef NO_IEEE - /* [ MP safe, does not change dynamically ] */ int float_detect_tininess = float_tininess_after_rounding; @@ -491,5 +489,3 @@ static float128 propagateFloat128NaN( float128 a, float128 b ) } #endif - -#endif /* !NO_IEEE */ |