Skip to content

Commit 08d2e9a

Browse files
committed
Drop braces. NFC.
1 parent 36f4de8 commit 08d2e9a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/Vectorize/VectorCombine.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4267,9 +4267,8 @@ bool VectorCombine::run() {
42674267
Instruction *I = &BB.front();
42684268
while (I) {
42694269
NextInst = I->getNextNode();
4270-
if (!I->isDebugOrPseudoInst()) {
4270+
if (!I->isDebugOrPseudoInst())
42714271
MadeChange |= FoldInst(*I);
4272-
}
42734272
I = NextInst;
42744273
}
42754274
}

0 commit comments

Comments
 (0)