[PATCH] D106166: [LV][ARM] Tighten up MLA reduction costing
Simon Pilgrim via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 20 08:29:16 PDT 2021
RKSimon added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/LoopVectorize.cpp:7159
Instruction *RetI = I;
- if ((RetI->getOpcode() == Instruction::SExt ||
- RetI->getOpcode() == Instruction::ZExt)) {
+ if (match(RetI, m_ZExtOrSExt(m_Value()))) {
if (!RetI->hasOneUser())
----------------
pre-commit these PatternMatch NFCs ?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106166/new/
https://reviews.llvm.org/D106166
More information about the llvm-commits
mailing list