| 88 | return (fpstatus_ & kOverflow) != 0; |
| 89 | } |
| 90 | constexpr bool IsUnderFlow() const |
| 91 | { |
| 92 | return (fpstatus_ & kUnderflow) != 0; |
| 93 | } |
| 94 | static void RaiseDivideByZero() |
| 95 | { |
| 96 | if constexpr (kDivideByZero != 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected