| 178 | } |
| 179 | |
| 180 | static inline float8 |
| 181 | float8_mi(const float8 val1, const float8 val2) |
| 182 | { |
| 183 | float8 result; |
| 184 | |
| 185 | result = val1 - val2; |
| 186 | if (unlikely(isinf(result)) && !isinf(val1) && !isinf(val2)) |
| 187 | float_overflow_error(); |
| 188 | |
| 189 | return result; |
| 190 | } |
| 191 | |
| 192 | static inline float4 |
| 193 | float4_mul(const float4 val1, const float4 val2) |
no test coverage detected