Skip to content

Commit b886a86

Browse files
Spelling
1 parent ccb33b2 commit b886a86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7369,7 +7369,7 @@ bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
73697369
IsLoad ? "destination operands must be sequential"
73707370
: "source operands must be sequential");
73717371
}
7372-
// Rt bust be even
7372+
// Rt must be even
73737373
if (Rt & 1)
73747374
return Error(
73757375
Op1.getStartLoc(),
@@ -7380,7 +7380,7 @@ bool ARMAsmParser::ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
73807380
Reg1, ARM::gsub_0, &(MRI->getRegClass(ARM::GPRPairRegClassID)));
73817381
Operands[Idx] =
73827382
ARMOperand::CreateReg(NewReg, Op1.getStartLoc(), Op2.getEndLoc());
7383-
// Only remove redundent operand if not in GNU alias case
7383+
// redundant operand only exists if not in GNU alias case
73847384
if (!IsGNUAlias)
73857385
Operands.erase(Operands.begin() + Idx + 1);
73867386
}

0 commit comments

Comments
 (0)