We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f66c8 commit 4419ff2Copy full SHA for 4419ff2
libc/src/__support/FPUtil/x86_64/fenv_mxcsr_utils.h
@@ -72,7 +72,9 @@ LIBC_INLINE static uint16_t test_except(uint16_t excepts) {
72
73
LIBC_INLINE static uint16_t get_except() {
74
uint32_t mxcsr = ~get_mxcsr();
75
- return static_cast<uint16_t>((mxcsr >> ExceptionFlags::MXCSR_EXCEPTION_MASK_BIT_POSITION) & ExceptionFlags::ALL_F);
+ return static_cast<uint16_t>(
76
+ (mxcsr >> ExceptionFlags::MXCSR_EXCEPTION_MASK_BIT_POSITION) &
77
+ ExceptionFlags::ALL_F);
78
}
79
80
LIBC_INLINE static void set_except(uint16_t excepts) {
0 commit comments