| 284 | *----------------------------------------------------------------------------*/ |
| 285 | |
| 286 | static inline commonNaNT floatx80ToCommonNaN( floatx80 a, float_status *status ) |
| 287 | { |
| 288 | commonNaNT z; |
| 289 | |
| 290 | if ( floatx80_is_signaling_nan( a ) ) float_raise( float_flag_signaling, status ); |
| 291 | z.sign = a.high>>15; |
| 292 | z.low = 0; |
| 293 | z.high = a.low<<1; |
| 294 | return z; |
| 295 | |
| 296 | } |
| 297 | |
| 298 | /*---------------------------------------------------------------------------- |
| 299 | | Returns the result of converting the canonical NaN `a' to the extended |
no test coverage detected