Introduce float type

This commit is contained in:
2024-12-31 18:10:34 +01:00
parent 75a691134f
commit 8176da5f9b
8 changed files with 100 additions and 60 deletions

View File

@ -22,11 +22,11 @@ namespace gcc
}
else if (type == boolean_type_node)
{
return "Boolean";
return "Bool";
}
else if (type == enumeral_node)
else if (type == double_type_node)
{
return "Enum";
return "Float";
}
else
{