Changes between Version 82 and Version 83 of IR


Ignore:
Timestamp:
11/28/15 11:15:13 (10 years ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IR

    v82 v83  
    8282  a_t : Dytype[Array[Integer]];
    8383  a: Array[Integer];
    84 L1:
    85   when true do ASSIGN "x", mul(3,"y"); goto L2;
    86 L2:
    87   when true do ASSIGN "a_t", dytype(Array[Integer, add("x",1)]); goto L3;
    88 L3:
    89   when true do ASSIGN "a", new("a_t"); goto L4;
    90 L4:
     84
     85  ASSIGN "x", mul(3,"y");
     86  ASSIGN "a_t", dytype(Array[Integer, add("x",1)]);
     87  ASSIGN "a", new("a_t");
    9188}
    9289}}}