Add a char type

This commit is contained in:
2025-01-01 23:02:19 +01:00
parent 8176da5f9b
commit 45eb6a3b84
10 changed files with 70 additions and 25 deletions

View File

@ -28,6 +28,10 @@ namespace gcc
{
return "Float";
}
else if (type == elna_char_type_node)
{
return "Char";
}
else
{
return "<<unknown-type>>";