[PATCH] D103638: [SLP]Improve vectorization of PHI instructions.

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 12 03:11:24 PDT 2021


RKSimon added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:8386
+              return false;
+            continue;
+          }
----------------
NIT (to match the order in the previous lambda):
```
if (S.getOpcode())
  continue;
return false;
```


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D103638



More information about the llvm-commits mailing list