summaryrefslogtreecommitdiff
path: root/cil/doc/examples/ex19.txt
blob: 3b82868fe11cd208caa42b30c3d793716788f249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Generated by CIL v. 1.3.5 */
/* print_CIL_Input is true */

#line 1 "cilcode.tmp/ex19.c"
int main(void) 
{ int x ;
  int i ;

  {
#line 2
  i = 0;
#line 2
  while (i < 5) {
#line 3
    if (i == 5) {
      goto __Cont;
    }
#line 4
    if (i == 4) {
#line 4
      break;
    }
#line 5
    i += 2;
    __Cont: /* CIL Label */ 
#line 2
    i ++;
  }
#line 7
  while (x < 5) {
#line 8
    if (x == 3) {
#line 8
      continue;
    }
#line 9
    x ++;
  }
#line 11
  return (0);
}
}