| 170 | *----------------------------------------------------------------------------*/ |
| 171 | |
| 172 | static inline float32 commonNaNToFloat32( commonNaNT a ) |
| 173 | { |
| 174 | |
| 175 | return ( ( (uint32_t) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 ); |
| 176 | |
| 177 | } |
| 178 | |
| 179 | /*---------------------------------------------------------------------------- |
| 180 | | Takes two single-precision floating-point values `a' and `b', one of which |
no outgoing calls
no test coverage detected