commit | 2deca34803b75ec3d7943b2718ac2869e6442416 | [log] [tgz] |
---|---|---|
author | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | Tue Dec 16 14:59:10 2014 +0000 |
committer | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | Tue Dec 16 14:59:10 2014 +0000 |
tree | 273e869af10aa9cb4f8fb1449e44166a24965a89 | |
parent | 0d6a010c13de508107d2331c215f08e7f0eee927 [diff] [blame] |
[mips][microMIPS] Implement SWP and LWP instructions Differential Revision: http://reviews.llvm.org/D5667 llvm-svn: 224338
diff --git a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index e836629..80e555e 100644 --- a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
@@ -262,6 +262,11 @@ } void MipsInstPrinter:: +printRegisterPair(const MCInst *MI, int opNum, raw_ostream &O) { + printRegName(O, MI->getOperand(opNum).getReg()); +} + +void MipsInstPrinter:: printSHFMask(const MCInst *MI, int opNum, raw_ostream &O) { llvm_unreachable("TODO"); }