diff options
| author | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2014-11-05 16:19:59 +0000 |
|---|---|---|
| committer | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2014-11-05 16:19:59 +0000 |
| commit | a87308c84c75984432fc2e501478f7456d6aef59 (patch) | |
| tree | 26315989712ade180b6922eb855c4dcbdb76da14 /llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp | |
| parent | 3038500f3bd893a1b60e7604db8f3c067cdb8d53 (diff) | |
| download | bcm5719-llvm-a87308c84c75984432fc2e501478f7456d6aef59.tar.gz bcm5719-llvm-a87308c84c75984432fc2e501478f7456d6aef59.zip | |
Reverted revisions 221351, 221352 and 221353.
llvm-svn: 221354
Diffstat (limited to 'llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp')
| -rw-r--r-- | llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index f78eec5fdaa..277850c4deb 100644 --- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -1198,16 +1198,6 @@ bool MipsAsmParser::processInstruction(MCInst &Inst, SMLoc IDLoc, if (Imm < 0 || Imm > 255) return Error(IDLoc, "immediate operand value out of range"); break; - case Mips::ANDI16_MM: - Opnd = Inst.getOperand(2); - if (!Opnd.isImm()) - return Error(IDLoc, "expected immediate operand kind"); - Imm = Opnd.getImm(); - if (!(Imm == 128 || (Imm >= 1 && Imm <= 4) || Imm == 7 || Imm == 8 || - Imm == 15 || Imm == 16 || Imm == 31 || Imm == 32 || Imm == 63 || - Imm == 64 || Imm == 255 || Imm == 32768 || Imm == 65535)) - return Error(IDLoc, "immediate operand value out of range"); - break; } } |

