[PATCH] D57598: [VPLAN] Determine Vector Width programmatically.
Florian Hahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 27 14:34:17 PDT 2019
fhahn added inline comments.
================
Comment at: lib/Transforms/Vectorize/LoopVectorizationPlanner.h:180
+ bool operator==(const VectorizationFactor &rhs) const {
+ return (Width == rhs.Width) && (Cost == rhs.Cost);
+ }
----------------
No braces needed, I'll run clang-format on your patch before committing.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57598/new/
https://reviews.llvm.org/D57598
More information about the llvm-commits
mailing list