| 80 | return (fpstatus_ & kInexact) != 0; |
| 81 | } |
| 82 | constexpr bool IsInvalid() const |
| 83 | { |
| 84 | return (fpstatus_ & kInvalid) != 0; |
| 85 | } |
| 86 | constexpr bool IsOverFlow() const |
| 87 | { |
| 88 | return (fpstatus_ & kOverflow) != 0; |
nothing calls this directly
no outgoing calls
no test coverage detected