Skip to content

Commit 12de60e

Browse files
Remove trailing ';'
1 parent 76e7657 commit 12de60e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Vectorize/VectorCombine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3217,7 +3217,7 @@ static bool feedsIntoVectorReduction(ShuffleVectorInst *SVI) {
32173217
if (!isa<BinaryOperator>(UI) && !isa<ShuffleVectorInst>(UI))
32183218
return false;
32193219

3220-
WorkList.emplace_back(UI);;
3220+
WorkList.emplace_back(UI);
32213221
}
32223222
}
32233223
return FoundReduction;

0 commit comments

Comments
 (0)