diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2015-12-07 19:21:39 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2015-12-07 19:21:39 +0000 |
| commit | e4b9f507cf7cc65454161cd39ec35bc63f126cf6 (patch) | |
| tree | ccfc434a5c55ac7f2fb3105af02260c17d865003 /llvm/lib/Target | |
| parent | aff223278c3770ba11c98bc33b53e0ea6ff675ae (diff) | |
| download | bcm5719-llvm-e4b9f507cf7cc65454161cd39ec35bc63f126cf6.tar.gz bcm5719-llvm-e4b9f507cf7cc65454161cd39ec35bc63f126cf6.zip | |
fix 'the the '; NFC
llvm-svn: 254928
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp b/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp index 64050824c10..a8622a96527 100644 --- a/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp +++ b/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp @@ -1592,7 +1592,7 @@ int HexagonAsmParser::processInstruction(MCInst &Inst, // not use the other opcode as it is a legacy artifact of TD files. int64_t Value; if (MO.getExpr()->evaluateAsAbsolute(Value)) { - // if the the operand can fit within a 7:2 field + // if the operand can fit within a 7:2 field if (Value < (1 << 8) && Value >= -(1 << 8)) { SMLoc myLoc = Operands[2]->getStartLoc(); // # is left in startLoc in the case of ## diff --git a/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp b/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp index 3dc49337ecb..2862468563c 100644 --- a/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp +++ b/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp @@ -1475,7 +1475,7 @@ bool HexagonInstrInfo::isComplex(const MachineInstr *MI) const { } -// Return true if the the instruction is a compund branch instruction. +// Return true if the instruction is a compund branch instruction. bool HexagonInstrInfo::isCompoundBranchInstr(const MachineInstr *MI) const { return (getType(MI) == HexagonII::TypeCOMPOUND && MI->isBranch()); } |

