[PATCH] D141739: DAG: Avoid stack lowering if bitcast has an illegal vector result type

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Jan 14 14:10:40 PST 2023


RKSimon added inline comments.


================
Comment at: llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp:4888
+          for (unsigned I = Ops.size(); I != WidenSize / InScalarSize; ++I)
+            Ops.push_back(Undef);
+
----------------
replace with Ops.append() ?


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

https://reviews.llvm.org/D141739



More information about the llvm-commits mailing list