From: Akira Hatanaka Date: Wed, 24 Jul 2013 18:43:52 +0000 (+0000) Subject: [mips] Make MipsAsmParser::parseCCRRegs return NoMatch instead of ParseFail X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=94ce6dadd131ca80adf2ba05391f689684540601;p=oota-llvm.git [mips] Make MipsAsmParser::parseCCRRegs return NoMatch instead of ParseFail when there wasn't a match. This behavior is consistent with other register parsing methods. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187063 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index 12ab2cae373..33c73379a4f 100644 --- a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -1451,7 +1451,7 @@ MipsAsmParser::OperandMatchResultTy MipsAsmParser::parseCCRRegs(SmallVectorImpl &Operands) { // If the first token is not '$' we have an error. if (Parser.getTok().isNot(AsmToken::Dollar)) - return MatchOperand_ParseFail; + return MatchOperand_NoMatch; SMLoc S = Parser.getTok().getLoc(); Parser.Lex(); // Eat the '$' @@ -1459,7 +1459,7 @@ MipsAsmParser::parseCCRRegs(SmallVectorImpl &Operands) { const AsmToken &Tok = Parser.getTok(); // Get next token. if (Tok.isNot(AsmToken::Integer)) - return MatchOperand_ParseFail; + return MatchOperand_NoMatch; unsigned Reg = matchRegisterByNumber(Tok.getIntVal(), Mips::CCRRegClassID);