[llvm] [X86] Add APX imulzu support. (PR #116806)

Phoebe Wang via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 21 20:09:36 PST 2024


================
@@ -45,6 +45,8 @@ def NoEGPR       : Predicate<"!Subtarget->hasEGPR()">;
 // entries, so that the NDD variant can be selected first to benefit RA.
 def HasNDD       : Predicate<"Subtarget->hasNDD()">;
 def NoNDD        : Predicate<"!Subtarget->hasNDD()">;
+def HasZU        : Predicate<"Subtarget->hasZU()">;
+def NoZU         : Predicate<"!Subtarget->hasZU()">;
----------------
phoebewang wrote:

Remove it.

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


More information about the llvm-commits mailing list