Skip to content

Commit b6606df

Browse files
committed
git-clang-format
1 parent bd0cf26 commit b6606df

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10724,8 +10724,9 @@ bool ARMAsmParser::processInstruction(MCInst &Inst,
1072410724
if ((unsigned)Inst.getOperand(2).getImm() > 255)
1072510725
break; // large immediate that tADDi8 can't contain
1072610726
} else {
10727-
int i = (Operands[MnemonicOpsEndInd + 1]->isImm()) ? MnemonicOpsEndInd + 1
10728-
: MnemonicOpsEndInd + 2;
10727+
int i = (Operands[MnemonicOpsEndInd + 1]->isImm())
10728+
? MnemonicOpsEndInd + 1
10729+
: MnemonicOpsEndInd + 2;
1072910730
MCParsedAsmOperand &Op = *Operands[i];
1073010731
if (isARMMCExpr(Op) && !isThumbI8Relocation(Op))
1073110732
break; // a type of non-immediate that tADDi8 can't represent

0 commit comments

Comments
 (0)