-
A tiny GCC front end – Part 11
Our tiny language features a few types:
int
,float
,bool
,string
and arrays of those types. We can even declare new type names based on other types but it still missing a record type. Today we will address this. -
A tiny GCC front end – Part 10
Today we will add a relatively simple feature that will be very useful for a future extension: type declarations.
-
A tiny GCC front end – Part 9
Today we will do something relatively easy: let's add a way to declare boolean variables and express boolean literals.
-
A tiny GCC front end – Part 8
Now that we have the basic language set implemented we can consider adding new features to it. Today we will add arrays.
-
A tiny GCC front end – Part 7
In this part we will complete the missing statements from part 6 and finish our front end.