preliminary work on sea of nodes based intermediate representation.

This commit is contained in:
Lorenzo Torres 2025-12-07 16:48:48 +01:00
parent 989a32fa7b
commit 849e0b6863
13 changed files with 918 additions and 58 deletions

15
test.l
View file

@ -1,5 +1,12 @@
u32 a()
{
[u32] v = {1, 2, 3};
return z[0];
u32 a = 2;
if (a == 3) {
a = 5;
if (a == 4) {
a = 3;
}
} else {
a = 1;
}
u32 d = a;