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 7dcf156 commit 27254ebCopy full SHA for 27254eb
libc/include/llvm-libc-types/cfloat128.h
@@ -26,7 +26,8 @@ typedef _Complex _Float128 cfloat128;
26
#define LIBC_TYPES_HAS_CFLOAT128
27
typedef _Complex _Float128 cfloat128;
28
#endif
29
-#elif __clang_major__ >= 11 && (defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__))
+#elif __clang_major__ >= 11 && \
30
+ (defined(__FLOAT128__) || defined(__SIZEOF_FLOAT128__))
31
// Use _Complex __float128 type. clang uses __SIZEOF_FLOAT128__ or __FLOAT128__
32
// macro to notify the availability of __float128 type:
33
// https://reviews.llvm.org/D15120
0 commit comments