[PATCH] D57997: [SDAG] Support vector UMULO/SMULO

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 20 02:47:28 PST 2019


RKSimon accepted this revision.
RKSimon added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: lib/CodeGen/SelectionDAG/SelectionDAG.cpp:8953
+  unsigned i;
+  for (i = 0; i < NE; ++i) {
+    SDValue Res = getNode(Opcode, dl, VTs, LHSScalars[i], RHSScalars[i]);
----------------
for (unsigned i = 0; i < NE; ++i) {


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

https://reviews.llvm.org/D57997





More information about the llvm-commits mailing list