Changes between Version 52 and Version 53 of IR


Ignore:
Timestamp:
11/24/15 18:54:22 (10 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IR

    v52 v53  
    2424L1 :
    2525  {
    26     \when (g1) stmt1; \goto L2;
    27     \when (g2) stmt2; \goto L3;
     26    when (g1) stmt1; goto L2;
     27    when (g2) stmt2; goto L3;
    2828  }
    2929
     
    3333L2 :
    3434    {
    35       \when (g3) stmt3; \goto L4;
     35      when (g3) stmt3; goto L4;
    3636      ...
    3737    }
     
    5353{
    5454  x: Integer;
     55  a_t : Dytype[Array[Integer]];
    5556  a: Array[Integer];
    5657L1:
    57   { \when (\true) x:=3*y; \goto L2; }
     58  when (\true) x:=3*y; goto L2;
    5859L2:
    59   { \when (\true) a:=\new(Array[Integer, x+1]); \goto L3; }
     60  when(\true) a_t:=\dytype(Array[Integer, x+1]); goto L3;
    6061L3:
     62  when (\true) a:=\new(a_t); goto L4;
     63L4:
    6164}
    6265}}}