[libcxx-commits] [libcxx] 4b05a12 - [libc++] Fix simd_unary.pass.cpp with AppleClang
Nikolas Klauser via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Oct 6 03:49:05 PDT 2025
Author: Nikolas Klauser
Date: 2025-10-06T12:47:51+02:00
New Revision: 4b05a12e9c0de38f54a6440a2cfe3741780418aa
URL: https://github.com/llvm/llvm-project/commit/4b05a12e9c0de38f54a6440a2cfe3741780418aa
DIFF: https://github.com/llvm/llvm-project/commit/4b05a12e9c0de38f54a6440a2cfe3741780418aa.diff
LOG: [libc++] Fix simd_unary.pass.cpp with AppleClang
When using AppleClang the `clang` feature flag is not set, but the
compiler supports `-flax-vector-conversions=integer`. This adds another
`ADDITIONAL_COMPILE_FLAGS` for AppleClang to fix the CI.
Added:
Modified:
libcxx/test/std/experimental/simd/simd.class/simd_unary.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/experimental/simd/simd.class/simd_unary.pass.cpp b/libcxx/test/std/experimental/simd/simd.class/simd_unary.pass.cpp
index 2c3751a97cf4e..874c6e119243f 100644
--- a/libcxx/test/std/experimental/simd/simd.class/simd_unary.pass.cpp
+++ b/libcxx/test/std/experimental/simd/simd.class/simd_unary.pass.cpp
@@ -14,6 +14,7 @@
// FIXME: This should work with -flax-vector-conversions=none
// ADDITIONAL_COMPILE_FLAGS(clang): -flax-vector-conversions=integer
+// ADDITIONAL_COMPILE_FLAGS(apple-clang): -flax-vector-conversions=integer
// <experimental/simd>
//
More information about the libcxx-commits
mailing list