| 903 | *----------------------------------------------------------------------------*/ |
| 904 | |
| 905 | static inline float64 packFloat64(flag zSign, int zExp, uint64_t zSig) |
| 906 | { |
| 907 | |
| 908 | return make_float64( |
| 909 | ( ( (uint64_t) zSign )<<63 ) + ( ( (uint64_t) zExp )<<52 ) + zSig); |
| 910 | |
| 911 | } |
| 912 | |
| 913 | /*---------------------------------------------------------------------------- |
| 914 | | Takes an abstract floating-point value having sign `zSign', exponent `zExp', |
no outgoing calls
no test coverage detected