Changes between Version 52 and Version 53 of IR
- Timestamp:
- 11/24/15 18:54:22 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IR
v52 v53 24 24 L1 : 25 25 { 26 \when (g1) stmt1; \goto L2;27 \when (g2) stmt2; \goto L3;26 when (g1) stmt1; goto L2; 27 when (g2) stmt2; goto L3; 28 28 } 29 29 … … 33 33 L2 : 34 34 { 35 \when (g3) stmt3; \goto L4;35 when (g3) stmt3; goto L4; 36 36 ... 37 37 } … … 53 53 { 54 54 x: Integer; 55 a_t : Dytype[Array[Integer]]; 55 56 a: Array[Integer]; 56 57 L1: 57 { \when (\true) x:=3*y; \goto L2; }58 when (\true) x:=3*y; goto L2; 58 59 L2: 59 { \when (\true) a:=\new(Array[Integer, x+1]); \goto L3; }60 when(\true) a_t:=\dytype(Array[Integer, x+1]); goto L3; 60 61 L3: 62 when (\true) a:=\new(a_t); goto L4; 63 L4: 61 64 } 62 65 }}}
