preliminary work on sea of nodes based intermediate representation.
This commit is contained in:
parent
989a32fa7b
commit
849e0b6863
13 changed files with 918 additions and 58 deletions
15
test.l
15
test.l
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue