Skip to content

Commit a10f5ab

Browse files
committed
[RISCV] Remove unneeded template parameter from ALU_ri. NFC
1 parent 56d6b56 commit a10f5ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/RISCV/RISCVInstrInfo.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,8 +549,8 @@ class HStore_rr<bits<7> funct7, string opcodestr>
549549
}
550550

551551
let hasSideEffects = 0, mayLoad = 0, mayStore = 0 in
552-
class ALU_ri<bits<3> funct3, string opcodestr, DAGOperand rty = GPR>
553-
: RVInstI<funct3, OPC_OP_IMM, (outs rty:$rd), (ins rty:$rs1, simm12:$imm12),
552+
class ALU_ri<bits<3> funct3, string opcodestr>
553+
: RVInstI<funct3, OPC_OP_IMM, (outs GPR:$rd), (ins GPR:$rs1, simm12:$imm12),
554554
opcodestr, "$rd, $rs1, $imm12">,
555555
Sched<[WriteIALU, ReadIALU]>;
556556

0 commit comments

Comments
 (0)