Skip to content

Commit cfb88e7

Browse files
committed
Fix formatting.
1 parent e519ae9 commit cfb88e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libc/src/__support/FPUtil/x86_64/fenv_mxcsr_utils.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ LIBC_INLINE static uint16_t test_except(uint16_t excepts) {
7272

7373
LIBC_INLINE static uint16_t get_except() {
7474
uint32_t mxcsr = ~get_mxcsr();
75-
return static_cast<uint16_t>((mxcsr >> ExceptionFlags::MXCSR_EXCEPTION_MASK_BIT_POSITION) & ExceptionFlags::ALL_F);
75+
return static_cast<uint16_t>(
76+
(mxcsr >> ExceptionFlags::MXCSR_EXCEPTION_MASK_BIT_POSITION) &
77+
ExceptionFlags::ALL_F);
7678
}
7779

7880
LIBC_INLINE static void set_except(uint16_t excepts) {

0 commit comments

Comments
 (0)