[PATCH] D78458: [LAA] Move CheckingPtrGroup/PointerCheck outside class (NFC).
Ayal Zaks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 28 08:02:00 PDT 2020
Ayal accepted this revision.
Ayal added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/Transforms/Utils/LoopVersioning.cpp:48
void LoopVersioning::setAliasChecks(
- SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks) {
+ SmallVector<RuntimePointerCheck, 4> Checks) {
AliasChecks = std::move(Checks);
----------------
Unrelated, while we're here: better use SmallVectorImpl or ArrayRef instead of returning, constructing and moving SmallVector<4>'s?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78458/new/
https://reviews.llvm.org/D78458
More information about the llvm-commits
mailing list