Skip to content

Commit 82b6fcd

Browse files
committed
Formatting
1 parent 7a05ee3 commit 82b6fcd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,8 @@ std::vector<Chain> Vectorizer::splitChainByAlignment(Chain &C) {
945945
unsigned NewNumVecElems = PowerOf2Ceil(NumVecElems);
946946
unsigned NewSizeBytes = VecElemBytes * NewNumVecElems;
947947

948-
assert(isPowerOf2_32(TargetVF) && "TargetVF expected to be a power of 2");
948+
assert(isPowerOf2_32(TargetVF) &&
949+
"TargetVF expected to be a power of 2");
949950
assert(NewNumVecElems <= TargetVF && "Should not extend past TargetVF");
950951

951952
LLVM_DEBUG(dbgs() << "LSV: attempting to extend chain of "

0 commit comments

Comments
 (0)