diff options
author | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2014-11-27 18:28:59 +0000 |
---|---|---|
committer | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2014-11-27 18:28:59 +0000 |
commit | f9a02500b662551804e4f2d27311e2ec7ec9031c (patch) | |
tree | 81fb8711417fcd113b963c71b3acb6f04484ccf6 /llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | |
parent | 56a6a7d3bde9c4e38eb3f50a15f2ebc598dc03bc (diff) | |
download | bcm5719-llvm-f9a02500b662551804e4f2d27311e2ec7ec9031c.tar.gz bcm5719-llvm-f9a02500b662551804e4f2d27311e2ec7ec9031c.zip |
[mips][microMIPS] Implement SWM16 and LWM16 instructions
Differential Revision: http://reviews.llvm.org/D5579
llvm-svn: 222901
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 ab6b22562ce..e8366290c16 100644 --- a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp @@ -233,6 +233,8 @@ printMemOperand(const MCInst *MI, int opNum, raw_ostream &O) { break; case Mips::SWM32_MM: case Mips::LWM32_MM: + case Mips::SWM16_MM: + case Mips::LWM16_MM: opNum = MI->getNumOperands() - 2; break; } |