Skip to content

Commit 76aedc8

Browse files
committed
Exclude clang from using C23 _Float128 type.
1 parent 503687a commit 76aedc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// TODO: https://github.com/llvm/llvm-project/issues/80195
1515
// Check _Float128 C23 type detection again when clang supports it.
16-
#ifdef __STDC_IEC_60559_BFP__
16+
#if defined(__STDC_IEC_60559_BFP__) && !defined(__clang__)
1717
// Use _Float128 C23 type.
1818
#define LIBC_COMPILER_HAS_C23_FLOAT128
1919
typedef _Float128 float128;

0 commit comments

Comments
 (0)