[ValueTypes] Add v16f16 and v32f16 to EVT::getEVTString and Tablegen's getEnumName

Missed these when I hadded the enum entries

llvm-svn: 370494
This commit is contained in:
Craig Topper 2019-08-30 17:34:29 +00:00
parent c4130cf132
commit 30ddd2ab6c
2 changed files with 4 additions and 0 deletions

View File

@ -191,6 +191,8 @@ std::string EVT::getEVTString() const {
case MVT::v3f16: return "v3f16";
case MVT::v4f16: return "v4f16";
case MVT::v8f16: return "v8f16";
case MVT::v16f16: return "v16f16";
case MVT::v32f16: return "v32f16";
case MVT::v3f32: return "v3f32";
case MVT::v4f32: return "v4f32";
case MVT::v5f32: return "v5f32";

View File

@ -130,6 +130,8 @@ StringRef llvm::getEnumName(MVT::SimpleValueType T) {
case MVT::v3f16: return "MVT::v3f16";
case MVT::v4f16: return "MVT::v4f16";
case MVT::v8f16: return "MVT::v8f16";
case MVT::v16f16: return "MVT::v16f16";
case MVT::v32f16: return "MVT::v32f16";
case MVT::v1f32: return "MVT::v1f32";
case MVT::v2f32: return "MVT::v2f32";
case MVT::v3f32: return "MVT::v3f32";