[llvm] r195245 - [mips][msa] Remove unused instruction class MSA_I8_X_DESC_BASE
Daniel Sanders
daniel.sanders at imgtec.com
Wed Nov 20 05:01:10 PST 2013
Author: dsanders
Date: Wed Nov 20 07:01:10 2013
New Revision: 195245
URL: http://llvm.org/viewvc/llvm-project?rev=195245&view=rev
Log:
[mips][msa] Remove unused instruction class MSA_I8_X_DESC_BASE
Modified:
llvm/trunk/lib/Target/Mips/MipsMSAInstrInfo.td
Modified: llvm/trunk/lib/Target/Mips/MipsMSAInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsMSAInstrInfo.td?rev=195245&r1=195244&r2=195245&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsMSAInstrInfo.td (original)
+++ llvm/trunk/lib/Target/Mips/MipsMSAInstrInfo.td Wed Nov 20 07:01:10 2013
@@ -1300,17 +1300,6 @@ class MSA_I8_DESC_BASE<string instr_asm,
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> {
More information about the llvm-commits
mailing list