| 76 | return (fpstatus_ & kDivideByZero) != 0; |
| 77 | } |
| 78 | constexpr bool IsInexact() const |
| 79 | { |
| 80 | return (fpstatus_ & kInexact) != 0; |
| 81 | } |
| 82 | constexpr bool IsInvalid() const |
| 83 | { |
| 84 | return (fpstatus_ & kInvalid) != 0; |
nothing calls this directly
no outgoing calls
no test coverage detected