broken! added return nodes

This commit is contained in:
Lorenzo Torres 2025-12-07 19:54:28 +01:00
parent f7689a3f54
commit 89e0d41fd9
4 changed files with 173 additions and 20 deletions

20
test.l
View file

@ -1,12 +1,12 @@
u32 a = 2;
if (a == 3) {
a = 5;
if (a == 4) {
a = 3;
u32 main(u32 b)
{
u32 a = 4;
//return a;
if (b == 3) {
return 3;
} else {
return 4;
}
} else {
a = 1;
return a;
}
u32 d = a;