From 5d53cce4c05d1f4f730cce080233dc959f773059 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 11 Feb 2009 17:37:21 +0000 Subject: docs/probe_math_exception.c: update example libc/sysdeps/linux/i386/bits/mathinline.h: improve __finite() macro, add __finitef macro (why they aren't always macros? why aren't they arch independent?) libm/math_private.h: much better comments on math_opt_barrier() and math_force_eval() libm/s_finite[f].c: improve out-of-line __finite[f]() too (one byte less, yay...) --- libm/s_finitef.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'libm/s_finitef.c') diff --git a/libm/s_finitef.c b/libm/s_finitef.c index b7c853d4a..b427ea691 100644 --- a/libm/s_finitef.c +++ b/libm/s_finitef.c @@ -23,8 +23,11 @@ int __finitef(float x) { - int32_t ix; - GET_FLOAT_WORD(ix,x); - return (int)((u_int32_t)((ix&0x7fffffff)-0x7f800000)>>31); + u_int32_t ix; + + GET_FLOAT_WORD(ix, x); + /* Finite numbers have at least one zero bit in exponent. */ + /* All other numbers will result in 0xffffffff after OR: */ + return (ix | 0x807fffff) != 0xffffffff; } libm_hidden_def(__finitef) -- cgit v1.2.3