1 /* Copyright (C) 2002,2007 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
10 __fpclassifyf (float x
)
16 if (w
== 0x00000000 || w
== 0x80000000)
18 else if ((w
>= 0x00800000 && w
<= 0x7f7fffff) ||
19 (w
>= 0x80800000 && w
<= 0xff7fffff))
21 else if ((w
>= 0x00000001 && w
<= 0x007fffff) ||
22 (w
>= 0x80000001 && w
<= 0x807fffff))
24 else if (w
== 0x7f800000 || w
== 0xff800000)