Skip to content

Commit 8e441c2

Browse files
committed
nfc, replace VPValue with auto
1 parent d8da3b4 commit 8e441c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Transforms/Vectorize/VPlanUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ inline bool isSingleScalar(const VPValue *VPV) {
8383
(PreservesUniformity(VPI->getOpcode()) &&
8484
all_of(VPI->operands(), isSingleScalar));
8585
})
86-
.Case<VPExpandSCEVRecipe>([](const VPValue *) {
86+
.Case<VPExpandSCEVRecipe>([](const auto *) {
8787
// VPExpandSCEVRecipes must be placed in the entry and are always
8888
// uniform.
8989
return true;
9090
})
91-
.Default([](const VPValue *) { return false; });
91+
.Default([](const auto *) { return false; });
9292
}
9393

9494
/// Return true if \p V is a header mask in \p Plan.

0 commit comments

Comments
 (0)