From e4b9f507cf7cc65454161cd39ec35bc63f126cf6 Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Mon, 7 Dec 2015 19:21:39 +0000 Subject: fix 'the the '; NFC llvm-svn: 254928 --- llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Target/Hexagon/AsmParser') 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 ## -- cgit v1.2.3