| 90 | } |
| 91 | |
| 92 | __fi constexpr FPControlRegister SetFlushToZero(bool ftz) |
| 93 | { |
| 94 | if (ftz) |
| 95 | bitmask |= FLUSH_TO_ZERO_BIT; |
| 96 | else |
| 97 | bitmask &= ~FLUSH_TO_ZERO_BIT; |
| 98 | return *this; |
| 99 | } |
| 100 | |
| 101 | __fi constexpr bool operator==(const FPControlRegister& rhs) const { return bitmask == rhs.bitmask; } |
| 102 | __fi constexpr bool operator!=(const FPControlRegister& rhs) const { return bitmask != rhs.bitmask; } |
no outgoing calls
no test coverage detected