[clang] [Headers][X86] Allow AVX512 masked arithmetic ss/sd intrinsics to be used in constexpr (PR #162816)
Simon Pilgrim via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 10 07:01:31 PST 2025
================
@@ -90,6 +95,11 @@ constexpr bool match_v4su(__m128i _v, unsigned a, unsigned b, unsigned c, unsign
return v[0] == a && v[1] == b && v[2] == c && v[3] == d;
}
+constexpr bool match_v4sf(__m128 _v, float a, float b, float c, float d) {
----------------
RKSimon wrote:
Why not use match_m128?
https://github.com/llvm/llvm-project/pull/162816
More information about the cfe-commits
mailing list