[PATCH] D98210: [ARM] Add VREV MVE shuffle costs
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 16 06:56:09 PDT 2021
RKSimon accepted this revision.
RKSimon added a comment.
Just one minor
================
Comment at: llvm/lib/Target/ARM/ARMTargetTransformInfo.h:304
+
+ for (unsigned i = 0; i < M.size(); ++i) {
+ if (M[i] < 0)
----------------
```
for (unsigned i = 0, e = M.size(); i < e; ++i) {
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D98210/new/
https://reviews.llvm.org/D98210
More information about the llvm-commits
mailing list