aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test3.txt
blob: f77e2618b8b6f864a22f8aa4764e48f9010dd7d8 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
ep
L1: do {
 switch (the_var) {
 ep -> LBB1 {
  LBB1
  switch (the_var) {
  LBB1 -> LBB2 {
   break;
  }
  default: {
   break L1;
  }
  }
  LBB2
  switch (the_var) {
  default: {
  }
  }
  break;
 }
 default: {
 }
 }
} while(0);
LBB3
L5: do {
 switch (the_var) {
 LBB3 -> LBB4 {
  LBB4
  switch (the_var) {
  LBB4 -> LBB5 {
   break;
  }
  default: {
   break L5;
  }
  }
  while(1) {
   LBB5
   switch (the_var) {
   LBB5 -> LBB6 {
    break L5;
    break;
   }
   default: {
   }
   }
  }
  break;
 }
 default: {
 }
 }
} while(0);
LBB6