| 1723 | } |
| 1724 | |
| 1725 | inline vec_float VecFnsgn(const vec_float& v) |
| 1726 | { |
| 1727 | vec_float result = VecLoadVectorConstant<0x3F800000>(); |
| 1728 | result = result | VecAndc(VecFloatGetMinusZero(), v); |
| 1729 | return (VecAndc(result, VecMaskCmpeq(v, VecFloatGetZero()))); |
| 1730 | } |
| 1731 | |
| 1732 | inline vec_float VecNonzeroFsgn(const vec_float& v) |
| 1733 | { |
no test coverage detected