[libc][math][c23] Temporarily disable float16 on 32-bit Arm (#95027)

See Buildbot failure:
https://lab.llvm.org/buildbot/#/builders/229/builds/27009.
This commit is contained in:
OverMighty
2024-06-10 21:30:18 +02:00
committed by GitHub
parent 43229977fe
commit a9e5f42e2a

View File

@@ -11,7 +11,7 @@
#if defined(__FLT16_MANT_DIG__) && \
(!defined(__GNUC__) || __GNUC__ >= 13 || defined(__clang__)) && \
!defined(__riscv)
!defined(__arm__) && !defined(_M_ARM) && !defined(__riscv)
#define LIBC_TYPES_HAS_FLOAT16
#endif