diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2016-03-22 14:50:22 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2016-03-22 14:50:22 +0000 |
commit | f3599eb6839319f1aca6abe6e9007248235191dc (patch) | |
tree | 58adfab15bd9f1264999152a099238cb4ba49778 | |
parent | 97297770a6897abf7226f35d5dca547f1d85740d (diff) | |
download | bcm5719-llvm-f3599eb6839319f1aca6abe6e9007248235191dc.tar.gz bcm5719-llvm-f3599eb6839319f1aca6abe6e9007248235191dc.zip |
[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
-rw-r--r-- | llvm/lib/Target/Mips/MipsInstrInfo.td | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/llvm/lib/Target/Mips/MipsInstrInfo.td b/llvm/lib/Target/Mips/MipsInstrInfo.td index c97f0b42755..f37f2bf6586 100644 --- a/llvm/lib/Target/Mips/MipsInstrInfo.td +++ b/llvm/lib/Target/Mips/MipsInstrInfo.td @@ -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 = |