From 9e435c96def971e078bc76c0477025da01b438a7 Mon Sep 17 00:00:00 2001 From: Cullen Rhodes Date: Mon, 13 Sep 2021 09:45:55 +0000 Subject: [PATCH] [Lanai] NFC: Remove unused tblgen template arg 'OpNode' Identified in D109359. Reviewed By: jpienaar Differential Revision: https://reviews.llvm.org/D109606 --- llvm/lib/Target/Lanai/LanaiInstrInfo.td | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Target/Lanai/LanaiInstrInfo.td b/llvm/lib/Target/Lanai/LanaiInstrInfo.td index fcf89a0..d1fd327 100644 --- a/llvm/lib/Target/Lanai/LanaiInstrInfo.td +++ b/llvm/lib/Target/Lanai/LanaiInstrInfo.td @@ -269,7 +269,7 @@ def splsIdempotent : InstrMapping { // -------------------------------------------------- // // ALU instructions // -------------------------------------------------- // -multiclass ALUbase subOp, string AsmStr, SDNode OpNode, +multiclass ALUbase subOp, string AsmStr, PatLeaf LoExt, PatLeaf HiExt, list loPattern, list hiPattern> { // Register Immediate @@ -286,7 +286,7 @@ multiclass ALUbase subOp, string AsmStr, SDNode OpNode, multiclass ALUarith subOp, string AsmStr, SDNode OpNode, PatLeaf LoExt, PatLeaf HiExt> { - defm I_ : ALUbase; + defm I_ : ALUbase; // Register Register let JJJJJ = 0 in @@ -297,7 +297,7 @@ multiclass ALUarith subOp, string AsmStr, SDNode OpNode, multiclass ALUlogic subOp, string AsmStr, SDNode OpNode, PatLeaf LoExt, PatLeaf HiExt> { - defm I_ : ALUbase; -- 2.7.4