| 76 | } |
| 77 | |
| 78 | __fi constexpr FPControlRegister SetDenormalsAreZero(bool daz) |
| 79 | { |
| 80 | if (daz) |
| 81 | bitmask |= DENORMALS_ARE_ZERO_BIT; |
| 82 | else |
| 83 | bitmask &= ~DENORMALS_ARE_ZERO_BIT; |
| 84 | return *this; |
| 85 | } |
| 86 | |
| 87 | __fi constexpr bool GetFlushToZero() const |
| 88 | { |
no outgoing calls
no test coverage detected