diff options
author | Zlatko Buljan <Zlatko.Buljan@imgtec.com> | 2015-11-12 13:21:33 +0000 |
---|---|---|
committer | Zlatko Buljan <Zlatko.Buljan@imgtec.com> | 2015-11-12 13:21:33 +0000 |
commit | 797c2aec6b776f2efbe5cb49039301329cca11b1 (patch) | |
tree | 22d9599d66372a5876ec4d43ff8e9fee1cf5d12c /llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | |
parent | d38860610da955e7013479106075e30c11814bb4 (diff) | |
download | bcm5719-llvm-797c2aec6b776f2efbe5cb49039301329cca11b1.tar.gz bcm5719-llvm-797c2aec6b776f2efbe5cb49039301329cca11b1.zip |
[mips][microMIPS] Implement LWM16, SB16, SH16, SW16, SWSP and SWM16 instructions
Differential Revision: http://reviews.llvm.org/D11406
llvm-svn: 252885
Diffstat (limited to 'llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index a5637b16b63..a7b7d2e080e 100644 --- a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp @@ -235,7 +235,9 @@ printMemOperand(const MCInst *MI, int opNum, raw_ostream &O) { case Mips::SWM32_MM: case Mips::LWM32_MM: case Mips::SWM16_MM: + case Mips::SWM16_MMR6: case Mips::LWM16_MM: + case Mips::LWM16_MMR6: opNum = MI->getNumOperands() - 2; break; } |