IR linearization

This commit is contained in:
Mid
2025-08-13 18:27:52 +03:00
parent 67fb9e5b52
commit 5755e243a9
11 changed files with 388 additions and 329 deletions

View File

@@ -0,0 +1,9 @@
u16 x = 0;
x = 5;
if(x == 2) {
x = 3;
}
x = 4;

View File

@@ -1,12 +1,5 @@
u16 x: 5;
loop {
u16* y = 257;
u9 w = -4;
u16 p = *y;
u4 z = p + 3;
u2 o = -w;
if(x != 0) {
break;
}
if(x != 0) {
x = 2;
}