mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[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:
parent
2bd08cce34
commit
89128644b0
@ -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";
|
||||
|
@ -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";
|
||||
|
Loading…
x
Reference in New Issue
Block a user