[PATCH] D85982: [SVE] Lower fixed length vXi32/vXi64 SDIV

Cameron McInally via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 14 11:41:59 PDT 2020


cameron.mcinally marked an inline comment as done.
cameron.mcinally added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:1140
+    setOperationAction(ISD::SDIV, VT, Custom);
+    setOperationAction(ISD::UDIV, VT, Custom);
+  }
----------------
efriedma wrote:
> Did you mean to add udiv testcases?
Whoops. Not yet. I figure it makes sense to finalize the SDIV flowerings before starting on UDIV.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D85982/new/

https://reviews.llvm.org/D85982



More information about the llvm-commits mailing list