aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test2.txt
blob: aba9ec1f7566ead202f0a7b1ee7817c97add6a8b (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
 ep
 L1: do {
  switch (var) {
  ep -> LBB1 {
   LBB1
   switch (the_var) {
   LBB1 -> LBB2 {
    break;
   }
   default: {
    break L1;
   }
   }
   LBB2
   switch (the_var) {
   default: {
   }
   }
   break;
  }
  default: {
  }
  }
 } while(0);
 LBB3