| 718 | *----------------------------------------------------------------------------*/ |
| 719 | |
| 720 | static inline float32 packFloat32(flag zSign, int zExp, uint32_t zSig) |
| 721 | { |
| 722 | |
| 723 | return make_float32( |
| 724 | ( ( (uint32_t) zSign )<<31 ) + ( ( (uint32_t) zExp )<<23 ) + zSig); |
| 725 | |
| 726 | } |
| 727 | |
| 728 | /*---------------------------------------------------------------------------- |
| 729 | | Takes an abstract floating-point value having sign `zSign', exponent `zExp', |
no outgoing calls
no test coverage detected