1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

[mips] Make simm6 consistent with the rest. NFC.

Summary:

Reviewers: vkalintiris

Subscribers: dsanders, llvm-commits

Differential Revision: http://reviews.llvm.org/D18147

llvm-svn: 264057
This commit is contained in:
Daniel Sanders 2016-03-22 14:50:22 +00:00
parent c1d080a460
commit cb019595cf

View File

@ -567,10 +567,6 @@ def calltarget : Operand<iPTR> {
def imm64: Operand<i64>;
def simm6 : Operand<i32> {
let ParserMatchClass = ConstantSImm6AsmOperandClass;
let OperandType = "OPERAND_IMMEDIATE";
}
def simm9 : Operand<i32>;
def simm10 : Operand<i32>;
def simm11 : Operand<i32>;
@ -739,7 +735,7 @@ foreach I = {1, 2, 3, 4, 5, 6, 8} in
}
// Signed operands
foreach I = {4, 5} in
foreach I = {4, 5, 6} in
def simm # I : Operand<i32> {
let DecoderMethod = "DecodeSImmWithOffsetAndScale<" # I # ">";
let ParserMatchClass =