aboutsummaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorOverMighty <its.overmighty@gmail.com>2024-06-10 21:30:18 +0200
committerGitHub <noreply@github.com>2024-06-10 15:30:18 -0400
commita9e5f42e2a4bc94dbd8d5bb027dfab230945eca8 (patch)
treee9c9346cec151f2f32222766e5e39a180ecaa58f /libc
parent43229977fe0f74bcdfeda20e478065a2072a1846 (diff)
downloadllvm-a9e5f42e2a4bc94dbd8d5bb027dfab230945eca8.zip
llvm-a9e5f42e2a4bc94dbd8d5bb027dfab230945eca8.tar.gz
llvm-a9e5f42e2a4bc94dbd8d5bb027dfab230945eca8.tar.bz2
[libc][math][c23] Temporarily disable float16 on 32-bit Arm (#95027)
See Buildbot failure: https://lab.llvm.org/buildbot/#/builders/229/builds/27009.
Diffstat (limited to 'libc')
-rw-r--r--libc/include/llvm-libc-macros/float16-macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/llvm-libc-macros/float16-macros.h b/libc/include/llvm-libc-macros/float16-macros.h
index 3f819ad..e7d8d93 100644
--- a/libc/include/llvm-libc-macros/float16-macros.h
+++ b/libc/include/llvm-libc-macros/float16-macros.h
@@ -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