================
@@ -327,9 +331,13 @@ void RVVType::initTypeStr() {
Str += getTypeString("int");
break;
case ScalarTypeKind::UnsignedInteger:
+ Str += getTypeString("uint");
+ break;
case ScalarTypeKind::FloatE4M3:
+ Str += Twine("vfloat8e4m3" + LMUL.str() + "_t").str();
+ break;
case ScalarTypeKind::FloatE5M2:
- Str += getTypeString("uint");
+ Str += Twine("vfloat8e5m2" + LMUL.str() + "_t").str();
----------------
4vtomat wrote:
I think it doesn't even need Twine
https://github.com/llvm/llvm-project/pull/191349
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits