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 0cf7974 commit bc65c9cCopy full SHA for bc65c9c
libc/include/llvm-libc-types/float128.h
@@ -20,7 +20,8 @@
20
#if (defined(LIBC_COMPILER_GCC_VER) && (LIBC_COMPILER_GCC_VER >= 1301)) && \
21
(defined(__aarch64__) || defined(__riscv) || defined(__x86_64__))
22
typedef _Float128 float128;
23
-#elif (defined(LIBC_COMPILER_CLANG_VER) && (LIBC_COMPILER_CLANG_VER >= 600)) &&\
+#elif (defined(LIBC_COMPILER_CLANG_VER) && \
24
+ (LIBC_COMPILER_CLANG_VER >= 600)) && \
25
(defined(__x86_64__) && !defined(__Fuchsia__))
26
typedef __float128 float128;
27
#elif (LDBL_MANT_DIG == 113) || (__LDBL_MANT_DIG__ == 113)
0 commit comments