Skip to content

Commit 9491aec

Browse files
authored
[TableGen][CodeGenTarget] Add support for v3i8 and v3i1 MVTs. [NFCI] (#83140)
1 parent a344db7 commit 9491aec

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/utils/TableGen/CodeGenTarget.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ StringRef llvm::getEnumName(MVT::SimpleValueType T) {
9191
case MVT::isVoid: return "MVT::isVoid";
9292
case MVT::v1i1: return "MVT::v1i1";
9393
case MVT::v2i1: return "MVT::v2i1";
94+
case MVT::v3i1: return "MVT::v3i1";
9495
case MVT::v4i1: return "MVT::v4i1";
9596
case MVT::v8i1: return "MVT::v8i1";
9697
case MVT::v16i1: return "MVT::v16i1";
@@ -107,6 +108,7 @@ StringRef llvm::getEnumName(MVT::SimpleValueType T) {
107108
case MVT::v128i4: return "MVT::v128i4";
108109
case MVT::v1i8: return "MVT::v1i8";
109110
case MVT::v2i8: return "MVT::v2i8";
111+
case MVT::v3i8: return "MVT::v3i8";
110112
case MVT::v4i8: return "MVT::v4i8";
111113
case MVT::v8i8: return "MVT::v8i8";
112114
case MVT::v16i8: return "MVT::v16i8";

0 commit comments

Comments
 (0)