Mercurial > lcfOS
view examples/pi/add.pi @ 313:04cf4d26a3bc
Added constant function
author | Windel Bouwman |
---|---|
date | Wed, 18 Dec 2013 18:02:26 +0100 |
parents | 68b01c8abf8a |
children |
line wrap: on
line source
module addmod function i32 add(i32 a, i32 b) init: i32 c = a + b return c function void test() init: a = 2 cjmp a > 3 L1 L2 L1: i32 b1 = 3 jmp L3 L2: i32 b2 = 6 + a jmp L3 L3: b = phi i32 [b2, L2], [b1, L1] return b