Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2022-10-24 12:54:19 +0300
committerGuillaume Chatelet <gchatelet@google.com>2022-10-24 12:54:19 +0300
commit55509b1136ea839f7ff1e6b8a5820c4ad4265217 (patch)
tree389dad2180df14c24925bf390a9ffc70ab3aacde /libc
parent97bd44f436ea81381d14aa108363941ecb82f544 (diff)
[libc] Fix broken tests on arm32
Diffstat (limited to 'libc')
-rw-r--r--libc/test/src/string/memory_utils/op_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/test/src/string/memory_utils/op_tests.cpp b/libc/test/src/string/memory_utils/op_tests.cpp
index 1c2631adedea..c41c1ae94450 100644
--- a/libc/test/src/string/memory_utils/op_tests.cpp
+++ b/libc/test/src/string/memory_utils/op_tests.cpp
@@ -276,7 +276,7 @@ using BcmpImplementations = testing::TypeList<
x86::avx512bw::Bcmp<64>, //
x86::avx512bw::Bcmp<128>, //
#endif
-#ifdef __ARM_NEON
+#ifdef LLVM_LIBC_ARCH_AARCH64
aarch64::Bcmp<16>, //
aarch64::Bcmp<32>, //
#endif