Implement adding an integer to a pointer

This commit is contained in:
2025-01-20 21:46:03 +01:00
parent 7b36a3803f
commit e15f6924b1
5 changed files with 75 additions and 14 deletions

View File

@ -20,6 +20,10 @@ namespace gcc
{
return "Int";
}
else if (type == unsigned_type_node)
{
return "Word";
}
else if (type == boolean_type_node)
{
return "Bool";