diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2013-09-24 14:20:00 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2013-09-24 14:20:00 +0000 |
commit | 2630718ae84cbeeb8d29e6c88c26c8cd6bcddaef (patch) | |
tree | 1beabd97740b820f399320a8e715547742b92d1f /llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | |
parent | e508704b52ee1bd1f69639aeefdf6fda77f46e4b (diff) | |
download | bcm5719-llvm-2630718ae84cbeeb8d29e6c88c26c8cd6bcddaef.tar.gz bcm5719-llvm-2630718ae84cbeeb8d29e6c88c26c8cd6bcddaef.zip |
[mips][msa] Added support for matching shf from normal IR (i.e. not intrinsics)
llvm-svn: 191302
Diffstat (limited to 'llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index 26321c99243..2612e3ba1ce 100644 --- a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp @@ -211,6 +211,11 @@ printFCCOperand(const MCInst *MI, int opNum, raw_ostream &O) { O << MipsFCCToString((Mips::CondCode)MO.getImm()); } +void MipsInstPrinter:: +printSHFMask(const MCInst *MI, int opNum, raw_ostream &O) { + llvm_unreachable("TODO"); +} + bool MipsInstPrinter::printAlias(const char *Str, const MCInst &MI, unsigned OpNo, raw_ostream &OS) { OS << "\t" << Str << "\t"; |