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 7a05ee3 commit 82b6fcdCopy full SHA for 82b6fcd
llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
@@ -945,7 +945,8 @@ std::vector<Chain> Vectorizer::splitChainByAlignment(Chain &C) {
945
unsigned NewNumVecElems = PowerOf2Ceil(NumVecElems);
946
unsigned NewSizeBytes = VecElemBytes * NewNumVecElems;
947
948
- assert(isPowerOf2_32(TargetVF) && "TargetVF expected to be a power of 2");
+ assert(isPowerOf2_32(TargetVF) &&
949
+ "TargetVF expected to be a power of 2");
950
assert(NewNumVecElems <= TargetVF && "Should not extend past TargetVF");
951
952
LLVM_DEBUG(dbgs() << "LSV: attempting to extend chain of "
0 commit comments