[PATCH] D40617: [LV] Interleaved access vectorization: fix computing new alias info
Michael Kuperstein via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 6 11:53:47 PST 2017
mkuper added inline comments.
================
Comment at: lib/Transforms/Vectorize/LoopVectorize.cpp:952
+ [](std::pair<int, Instruction *> p) { return p.second; });
+ propagateMetadata(NewInst, VL);
+ }
----------------
InnerLoopVectorizer::addMetadata() also calls addNewMetadata(), while this doesn't.
Is that intentional?
https://reviews.llvm.org/D40617
More information about the llvm-commits
mailing list