Skip to content

Commit 435d9c0

Browse files
ilovepigithub-actions[bot]
authored andcommitted
Automerge: [llvm][NFC] Fix bracing from #138414 (#138620)
I had forgotten to upload the formatting change.
2 parents 6eee151 + 8404b29 commit 435d9c0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/Utils/Local.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4225,9 +4225,8 @@ bool llvm::canReplaceOperandWithVariable(const Instruction *I, unsigned OpIdx) {
42254225
return false;
42264226

42274227
// Early exit.
4228-
if (!isa<Constant, InlineAsm>(I->getOperand(OpIdx))) {
4228+
if (!isa<Constant, InlineAsm>(I->getOperand(OpIdx)))
42294229
return true;
4230-
}
42314230

42324231
switch (I->getOpcode()) {
42334232
default:

0 commit comments

Comments
 (0)