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 ba534e4 commit 4bed81bCopy full SHA for 4bed81b
llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
@@ -1523,9 +1523,9 @@ static void narrowToSingleScalarRecipes(VPlan &Plan) {
1523
1524
// Skip recipes that aren't single scalars and don't just have their first
1525
// lane used.
1526
- if ((!vputils::isSingleScalar(RepOrWidenR) &&
1527
- !vputils::onlyFirstLaneUsed(RepOrWidenR)) ||
1528
- RepOrWidenR->getNumUsers() == 0)
+ if (!vputils::isSingleScalar(RepOrWidenR) &&
+ (!vputils::onlyFirstLaneUsed(RepOrWidenR) ||
+ RepOrWidenR->getNumUsers() == 0))
1529
continue;
1530
1531
// Skip recipes for which conversion to single-scalar does introduce
0 commit comments