Skip to content

Commit bc65c9c

Browse files
committed
Fix formatting.
1 parent 0cf7974 commit bc65c9c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/include/llvm-libc-types/float128.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
#if (defined(LIBC_COMPILER_GCC_VER) && (LIBC_COMPILER_GCC_VER >= 1301)) && \
2121
(defined(__aarch64__) || defined(__riscv) || defined(__x86_64__))
2222
typedef _Float128 float128;
23-
#elif (defined(LIBC_COMPILER_CLANG_VER) && (LIBC_COMPILER_CLANG_VER >= 600)) &&\
23+
#elif (defined(LIBC_COMPILER_CLANG_VER) && \
24+
(LIBC_COMPILER_CLANG_VER >= 600)) && \
2425
(defined(__x86_64__) && !defined(__Fuchsia__))
2526
typedef __float128 float128;
2627
#elif (LDBL_MANT_DIG == 113) || (__LDBL_MANT_DIG__ == 113)

0 commit comments

Comments
 (0)