We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8da3b4 commit 8e441c2Copy full SHA for 8e441c2
llvm/lib/Transforms/Vectorize/VPlanUtils.h
@@ -83,12 +83,12 @@ inline bool isSingleScalar(const VPValue *VPV) {
83
(PreservesUniformity(VPI->getOpcode()) &&
84
all_of(VPI->operands(), isSingleScalar));
85
})
86
- .Case<VPExpandSCEVRecipe>([](const VPValue *) {
+ .Case<VPExpandSCEVRecipe>([](const auto *) {
87
// VPExpandSCEVRecipes must be placed in the entry and are always
88
// uniform.
89
return true;
90
91
- .Default([](const VPValue *) { return false; });
+ .Default([](const auto *) { return false; });
92
}
93
94
/// Return true if \p V is a header mask in \p Plan.
0 commit comments