Skip to content

Commit 3f0f2cd

Browse files
committed
[RISCV] Remove unnecessary setting of parameter with same default value. NFC
1 parent a294e89 commit 3f0f2cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/RISCV/RISCVInstrInfoVPseudos.td

+3-3
Original file line numberDiff line numberDiff line change
@@ -3291,21 +3291,21 @@ multiclass VPseudoTernaryW_VV<LMULInfo m, bit Commutable = 0> {
32913291
multiclass VPseudoTernaryW_VV_RM<LMULInfo m, int sew> {
32923292
defvar constraint = "@earlyclobber $rd";
32933293
defm _VV : VPseudoTernaryWithPolicyRoundingMode<m.wvrclass, m.vrclass, m.vrclass, m,
3294-
constraint, sew, /* Commutable */ 0,
3294+
constraint, sew,
32953295
TargetConstraintType=3>;
32963296
}
32973297

32983298
multiclass VPseudoTernaryW_VX<LMULInfo m> {
32993299
defvar constraint = "@earlyclobber $rd";
33003300
defm "_VX" : VPseudoTernaryWithPolicy<m.wvrclass, GPR, m.vrclass, m,
3301-
constraint, /*Commutable*/ 0, TargetConstraintType=3>;
3301+
constraint, TargetConstraintType=3>;
33023302
}
33033303

33043304
multiclass VPseudoTernaryW_VF_RM<LMULInfo m, FPR_Info f, int sew> {
33053305
defvar constraint = "@earlyclobber $rd";
33063306
defm "_V" # f.FX : VPseudoTernaryWithPolicyRoundingMode<m.wvrclass, f.fprclass,
33073307
m.vrclass, m, constraint,
3308-
sew, /* Commutable */ 0,
3308+
sew,
33093309
TargetConstraintType=3>;
33103310
}
33113311

0 commit comments

Comments
 (0)