Skip to content

Commit a294e89

Browse files
committed
[RISCV] Replace VPseudoBinaryFV_VV with VPseudoBinaryV_VV. NFC
1 parent 2e1788f commit a294e89

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2245,11 +2245,6 @@ multiclass VPseudoBinaryV_VV_RM<LMULInfo m, string Constraint = "", bit Commutab
22452245
Commutable=Commutable>;
22462246
}
22472247

2248-
// Similar to VPseudoBinaryV_VV, but uses MxListF.
2249-
multiclass VPseudoBinaryFV_VV<LMULInfo m, int sew> {
2250-
defm _VV : VPseudoBinary<m.vrclass, m.vrclass, m.vrclass, m, "", sew>;
2251-
}
2252-
22532248
multiclass VPseudoBinaryFV_VV_RM<LMULInfo m, int sew> {
22542249
defm _VV : VPseudoBinaryRoundingMode<m.vrclass, m.vrclass, m.vrclass, m,
22552250
"", sew, UsesVXRM=0>;
@@ -2901,7 +2896,7 @@ multiclass VPseudoVALU_VV_VX {
29012896
multiclass VPseudoVSGNJ_VV_VF {
29022897
foreach m = MxListF in {
29032898
foreach e = SchedSEWSet<m.MX, isF=1>.val in
2904-
defm "" : VPseudoBinaryFV_VV<m, sew=e>,
2899+
defm "" : VPseudoBinaryV_VV<m, sew=e>,
29052900
SchedBinary<"WriteVFSgnjV", "ReadVFSgnjV", "ReadVFSgnjV", m.MX,
29062901
e, forceMergeOpRead=true>;
29072902
}
@@ -2918,7 +2913,7 @@ multiclass VPseudoVSGNJ_VV_VF {
29182913
multiclass VPseudoVMAX_VV_VF {
29192914
foreach m = MxListF in {
29202915
foreach e = SchedSEWSet<m.MX, isF=1>.val in
2921-
defm "" : VPseudoBinaryFV_VV<m, sew=e>,
2916+
defm "" : VPseudoBinaryV_VV<m, sew=e>,
29222917
SchedBinary<"WriteVFMinMaxV", "ReadVFMinMaxV", "ReadVFMinMaxV",
29232918
m.MX, e, forceMergeOpRead=true>;
29242919
}

0 commit comments

Comments
 (0)