| 671 | *----------------------------------------------------------------------------*/ |
| 672 | |
| 673 | static inline int extractFloat32Exp(float32 a) |
| 674 | { |
| 675 | |
| 676 | return ( float32_val(a)>>23 ) & 0xFF; |
| 677 | |
| 678 | } |
| 679 | |
| 680 | /*---------------------------------------------------------------------------- |
| 681 | | Returns the sign bit of the single-precision floating-point value `a'. |
no outgoing calls
no test coverage detected