blob: 03c38309b3c5ee32055072565f4c0f3a413ff0c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
func Main()
ret
const functable_A
:A_foo
func A_foo(this )
t.0 = 22
ret t.0
func AllocArray(size)
bytes = MulS(size 4)
bytes = Add(bytes 4)
v = HeapAllocZ(bytes)
[v] = size
ret v
|