mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 00:37:09 +00:00
ARM assembly parsing for shifted register operands for MOV instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144837 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
efed3d1f58
commit
40a86ee20f
@ -470,6 +470,7 @@ def shift_so_reg_reg : Operand<i32>, // reg reg imm
|
||||
let EncoderMethod = "getSORegRegOpValue";
|
||||
let PrintMethod = "printSORegRegOperand";
|
||||
let DecoderMethod = "DecodeSORegRegOperand";
|
||||
let ParserMatchClass = ShiftedRegAsmOperand;
|
||||
let MIOperandInfo = (ops GPR, GPR, i32imm);
|
||||
}
|
||||
|
||||
@ -480,6 +481,7 @@ def shift_so_reg_imm : Operand<i32>, // reg reg imm
|
||||
let EncoderMethod = "getSORegImmOpValue";
|
||||
let PrintMethod = "printSORegImmOperand";
|
||||
let DecoderMethod = "DecodeSORegImmOperand";
|
||||
let ParserMatchClass = ShiftedImmAsmOperand;
|
||||
let MIOperandInfo = (ops GPR, i32imm);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user