[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:32 PST 2025


================
@@ -80,6 +80,11 @@ constexpr bool match_v2du(__m128i _v, unsigned long long a, unsigned long long b
   return v[0] == a && v[1] == b;
 }
 
+constexpr bool match_v2df(__m128d _v, double a, double b){
----------------
RKSimon wrote:

Why not use match_m128d?

https://github.com/llvm/llvm-project/pull/162816


More information about the cfe-commits mailing list