aboutsummaryrefslogtreecommitdiff
path: root/src/relooper/test2.txt
blob: a558a8b79787c501bd6b53ad7fc240d7373a26d4 (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