Skip to content

Commit 3520dc5

Browse files
[Vectorize] Fix a build
This patch fixes: llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp:2263:19: error: expected ';' after return statement
1 parent 864a83d commit 3520dc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2260,7 +2260,7 @@ static bool isConsecutiveInterleaveGroup(VPInterleaveRecipe *InterleaveR,
22602260
[&TypeInfo, GroupElementTy](VPValue *Op) {
22612261
return TypeInfo.inferScalarType(Op) == GroupElementTy;
22622262
}))
2263-
return false
2263+
return false;
22642264
}
22652265

22662266
unsigned GroupSize = GroupElementTy->getScalarSizeInBits() * VF;

0 commit comments

Comments
 (0)