mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Replace assertion failure for badly formatted CPS instrution with error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158445 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
efc967e044
commit
a1c7367a5b
@ -3284,7 +3284,8 @@ ARMAsmParser::OperandMatchResultTy ARMAsmParser::
|
||||
parseProcIFlagsOperand(SmallVectorImpl<MCParsedAsmOperand*> &Operands) {
|
||||
SMLoc S = Parser.getTok().getLoc();
|
||||
const AsmToken &Tok = Parser.getTok();
|
||||
assert(Tok.is(AsmToken::Identifier) && "Token is not an Identifier");
|
||||
if (!Tok.is(AsmToken::Identifier))
|
||||
return MatchOperand_NoMatch;
|
||||
StringRef IFlagsStr = Tok.getString();
|
||||
|
||||
// An iflags string of "none" is interpreted to mean that none of the AIF
|
||||
|
@ -315,3 +315,9 @@
|
||||
@ CHECK-ERRORS: error: coprocessor option must be an immediate in range [0, 255]
|
||||
@ CHECK-ERRORS: ldc2 p2, c8, [r1], { -1 }
|
||||
@ CHECK-ERRORS: ^
|
||||
|
||||
@ Bad CPS instruction format.
|
||||
cps f,#1
|
||||
@ CHECK-ERRORS: error: invalid operand for instruction
|
||||
@ CHECK-ERRORS: cps f,#1
|
||||
@ CHECK-ERRORS: ^
|
||||
|
Loading…
x
Reference in New Issue
Block a user