This commit is contained in:
Scarlett
2025-05-06 15:34:55 -04:00
parent 596434e152
commit c8491b62e4
49 changed files with 1560 additions and 339 deletions

View File

@ -1,9 +1,24 @@
1: func : test
2: $t0 = true
3: c = $t0
4: $t1 = false
5: d = $t1
6: $t2 = c | d
7: d = $t2
8: $t3 = 1
9: return : $t3
1: func_dec : entry
2: func : entry
3: $t0 = true
4: Label : 1
5: c = $t0
6: $t1 = false
7: Label : 2
8: d = $t1
9: $t2 = true
10: Label : 3
11: if c True GOTO 5
12: GOTO : 4
13: Label : 4
14: if d True GOTO 5
15: $t2 = false
16: GOTO : 5
17: Label : 5
18: d = $t2
19: param d
20: call : printBoolean 1
21: Label : 6
22: result = $t3
23: $t4 = 1
24: return : $t4