[clang] [llvm] [AArch64] Implement intrinsics for SVE FAMIN/FAMAX (PR #99042)

Paul Walker via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 13 02:54:22 PDT 2024


================
@@ -135,6 +135,8 @@ enum NodeType : unsigned {
   UDIV_PRED,
   UMAX_PRED,
   UMIN_PRED,
+  FAMAX_PRED,
+  FAMIN_PRED,
----------------
paulwalker-arm wrote:

Is it necessary to create dedicated AArch64ISD nodes? We normally reserve that for cases where additional DAG combines are available or for when the operation is hard to match during ISel, neither of which apply in this case?

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


More information about the cfe-commits mailing list