[PATCH] D72238: [LegalizeVectorOps] Expand MERGE_VALUES created by custom legalization immediately

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 6 14:25:55 PST 2020


RKSimon added inline comments.


================
Comment at: llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp:843
+  case ISD::MERGE_VALUES:
+    for (unsigned i = 0; i != Node->getNumValues(); ++i)
+      Results.push_back(Node->getOperand(i));
----------------
e = Node->getNumValues(); i != e


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

https://reviews.llvm.org/D72238





More information about the llvm-commits mailing list