Skip to content

Commit b6c0469

Browse files
committed
clang-format
1 parent 9e0b71b commit b6c0469

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,10 +1343,9 @@ void Vectorizer::insertCastsToMergeClasses(EquivalenceClassMap &EQClasses) {
13431343
};
13441344

13451345
int FirstTypeKind = CommonTypeKind(EQClasses[C.first][0]);
1346-
if (FirstTypeKind != -1 &&
1347-
all_of(EQClasses[C.first], [&](Instruction *I) {
1348-
return CommonTypeKind(I) == FirstTypeKind;
1349-
})) {
1346+
if (FirstTypeKind != -1 && all_of(EQClasses[C.first], [&](Instruction *I) {
1347+
return CommonTypeKind(I) == FirstTypeKind;
1348+
})) {
13501349
ClassAllTy[C.first].set(FirstTypeKind);
13511350
}
13521351
}

0 commit comments

Comments
 (0)