Skip to content

Commit 288fb1f

Browse files
committed
Fix records
1 parent 9599e60 commit 288fb1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/RISCV/RISCVInstrInfoVSDPatterns.td

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -931,9 +931,9 @@ multiclass VPatWidenOrDisjoint_VV_VX<SDNode extop, string instruction_name> {
931931
}
932932
}
933933
}
934-
defm : VPatWidenOrDisjoint_VV<sext, "PseudoVWADD">;
935-
defm : VPatWidenOrDisjoint_VV<zext, "PseudoVWADDU">;
936-
defm : VPatWidenOrDisjoint_VV<anyext, "PseudoVWADDU">;
934+
defm : VPatWidenOrDisjoint_VV_VX<sext, "PseudoVWADD">;
935+
defm : VPatWidenOrDisjoint_VV_VX<zext, "PseudoVWADDU">;
936+
defm : VPatWidenOrDisjoint_VV_VX<anyext, "PseudoVWADDU">;
937937

938938
defm : VPatWidenBinarySDNode_VV_VX_WV_WX<sub, sext_oneuse, "PseudoVWSUB">;
939939
defm : VPatWidenBinarySDNode_VV_VX_WV_WX<sub, zext_oneuse, "PseudoVWSUBU">;

0 commit comments

Comments
 (0)