[Lanai] NFC: Remove unused tblgen template arg 'OpNode'
Identified in D109359. Reviewed By: jpienaar Differential Revision: https://reviews.llvm.org/D109606
This commit is contained in:
parent
6bd26329bf
commit
9e435c96de
|
@ -269,7 +269,7 @@ def splsIdempotent : InstrMapping {
|
|||
// -------------------------------------------------- //
|
||||
// ALU instructions
|
||||
// -------------------------------------------------- //
|
||||
multiclass ALUbase<bits<3> subOp, string AsmStr, SDNode OpNode,
|
||||
multiclass ALUbase<bits<3> subOp, string AsmStr,
|
||||
PatLeaf LoExt, PatLeaf HiExt,
|
||||
list<dag> loPattern, list<dag> hiPattern> {
|
||||
// Register Immediate
|
||||
|
@ -286,7 +286,7 @@ multiclass ALUbase<bits<3> subOp, string AsmStr, SDNode OpNode,
|
|||
|
||||
multiclass ALUarith<bits<3> subOp, string AsmStr, SDNode OpNode,
|
||||
PatLeaf LoExt, PatLeaf HiExt> {
|
||||
defm I_ : ALUbase<subOp, AsmStr, OpNode, LoExt, HiExt, [], []>;
|
||||
defm I_ : ALUbase<subOp, AsmStr, LoExt, HiExt, [], []>;
|
||||
|
||||
// Register Register
|
||||
let JJJJJ = 0 in
|
||||
|
@ -297,7 +297,7 @@ multiclass ALUarith<bits<3> subOp, string AsmStr, SDNode OpNode,
|
|||
|
||||
multiclass ALUlogic<bits<3> subOp, string AsmStr, SDNode OpNode,
|
||||
PatLeaf LoExt, PatLeaf HiExt> {
|
||||
defm I_ : ALUbase<subOp, AsmStr, OpNode, LoExt, HiExt,
|
||||
defm I_ : ALUbase<subOp, AsmStr, LoExt, HiExt,
|
||||
[(set GPR:$Rd, (OpNode GPR:$Rs1, LoExt:$imm16))],
|
||||
[(set GPR:$Rd, (OpNode GPR:$Rs1, HiExt:$imm16))]>;
|
||||
|
||||
|
|
Loading…
Reference in New Issue