[clang] [llvm] [X86][AVX10.2] Support AVX10.2-BF16 new instructions. (PR #101603)

Phoebe Wang via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 27 06:50:37 PDT 2024


================
@@ -211,6 +211,12 @@ def X86CmpMaskCC :
       SDTypeProfile<1, 3, [SDTCisVec<0>, SDTCVecEltisVT<0, i1>,
                        SDTCisVec<1>, SDTCisSameAs<2, 1>,
                        SDTCisSameNumEltsAs<0, 1>, SDTCisVT<3, i8>]>;
+
+def X86CmpMaskCC_Int :
+      SDTypeProfile<1, 3, [SDTCisVec<0>, SDTCVecEltisVT<0, i1>,
+                       SDTCisVec<1>, SDTCisSameAs<2, 1>,
+                       SDTCisSameNumEltsAs<0, 1>, SDTCisVT<3, i32>]>;
----------------
phoebewang wrote:

Can we define with `i8`, then we can share with `X86CmpMaskCC`?

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


More information about the cfe-commits mailing list