Skip to content

Commit

Permalink
[RISCV] Remove unnecessary overrides of a defaulted template argument…
Browse files Browse the repository at this point in the history
…. NFC
  • Loading branch information
topperc committed Mar 26, 2024
1 parent 8f01eca commit 39c03a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions llvm/lib/Target/RISCV/RISCVInstrInfoV.td
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ multiclass VALU_IV_X<string opcodestr, bits<6> funct6> {
}

multiclass VALU_IV_I<string opcodestr, bits<6> funct6> {
def I : VALUVI<funct6, opcodestr # ".vi", simm5>,
def I : VALUVI<funct6, opcodestr # ".vi">,
SchedUnaryMC<"WriteVIALUI", "ReadVIALUV">;
}

Expand Down Expand Up @@ -661,7 +661,7 @@ multiclass VALUNoVm_IV_V_X<string opcodestr, bits<6> funct6> {

multiclass VALUNoVm_IV_V_X_I<string opcodestr, bits<6> funct6>
: VALUNoVm_IV_V_X<opcodestr, funct6> {
def I : VALUVINoVm<funct6, opcodestr # ".vi", simm5>,
def I : VALUVINoVm<funct6, opcodestr # ".vi">,
SchedUnaryMC<"WriteVICALUI", "ReadVICALUV", forceMasked=0>;
}

Expand Down Expand Up @@ -900,7 +900,7 @@ multiclass VCMP_IV_X<string opcodestr, bits<6> funct6> {
}

multiclass VCMP_IV_I<string opcodestr, bits<6> funct6> {
def I : VALUVI<funct6, opcodestr # ".vi", simm5>,
def I : VALUVI<funct6, opcodestr # ".vi">,
SchedUnaryMC<"WriteVICmpI", "ReadVICmpV">;
}

Expand Down Expand Up @@ -947,7 +947,7 @@ multiclass VSALU_IV_V_X<string opcodestr, bits<6> funct6> {

multiclass VSALU_IV_V_X_I<string opcodestr, bits<6> funct6>
: VSALU_IV_V_X<opcodestr, funct6> {
def I : VALUVI<funct6, opcodestr # ".vi", simm5>,
def I : VALUVI<funct6, opcodestr # ".vi">,
SchedUnaryMC<"WriteVSALUI", "ReadVSALUV">;
}

Expand Down

0 comments on commit 39c03a2

Please sign in to comment.