summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsMSAInstrInfo.td
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2013-11-20 13:01:10 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2013-11-20 13:01:10 +0000
commit070fd557930a2832e9ff52799292bc38b5d2e5aa (patch)
treeacff0f48a3c5cbde6e0bd781273fb605c54cf4b1 /lib/Target/Mips/MipsMSAInstrInfo.td
parentc49e7e6aeedc8d6fbe6cabb5b61551556fdcbb0b (diff)
downloadllvm-070fd557930a2832e9ff52799292bc38b5d2e5aa.tar.gz
llvm-070fd557930a2832e9ff52799292bc38b5d2e5aa.tar.bz2
llvm-070fd557930a2832e9ff52799292bc38b5d2e5aa.tar.xz
[mips][msa] Remove unused instruction class MSA_I8_X_DESC_BASE
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsMSAInstrInfo.td')
-rw-r--r--lib/Target/Mips/MipsMSAInstrInfo.td11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Target/Mips/MipsMSAInstrInfo.td b/lib/Target/Mips/MipsMSAInstrInfo.td
index b63dfb93be..23fbdd1909 100644
--- a/lib/Target/Mips/MipsMSAInstrInfo.td
+++ b/lib/Target/Mips/MipsMSAInstrInfo.td
@@ -1300,17 +1300,6 @@ class MSA_I8_DESC_BASE<string instr_asm, SDPatternOperator OpNode,
InstrItinClass Itinerary = itin;
}
-// This class is deprecated and will be removed in the next few patches
-class MSA_I8_X_DESC_BASE<string instr_asm, SDPatternOperator OpNode,
- RegisterOperand ROWD, RegisterOperand ROWS = ROWD,
- InstrItinClass itin = NoItinerary> {
- dag OutOperandList = (outs ROWD:$wd);
- dag InOperandList = (ins ROWS:$ws, uimm8:$u8);
- string AsmString = !strconcat(instr_asm, "\t$wd, $ws, $u8");
- list<dag> Pattern = [(set ROWD:$wd, (OpNode ROWS:$ws, immZExt8:$u8))];
- InstrItinClass Itinerary = itin;
-}
-
class MSA_I8_SHF_DESC_BASE<string instr_asm, RegisterOperand ROWD,
RegisterOperand ROWS = ROWD,
InstrItinClass itin = NoItinerary> {