[PATCH] D113792: [SLP]Adjust GEP indices types when trying to build entries.

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Nov 14 08:53:43 PST 2021


RKSimon added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:3869
+      SmallVector<ValueList, 2> Operands;
+      Operands.emplace_back();
+      // Prepare the operand vector for pointer operands.
----------------
```
SmallVector<ValueList> Operands(1, ValueList());
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D113792



More information about the llvm-commits mailing list