Skip to content

Commit 8404b29

Browse files
authored
[llvm][NFC] Fix bracing from #138414 (#138620)
I had forgotten to upload the formatting change.
1 parent 43eafc0 commit 8404b29

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Transforms/Utils/Local.cpp

+1-2
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)