blob: 82ef5edfd6f5ec855d39549dc88294afb2a73f06 (
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
|
//0
switch (the_var) {
check(0) {
L2: while(1) {
//1
switch (the_var) {
check(1) {
break;
}
default: {
break L2;
}
}
}
L4: while(1) {
//2
switch (the_var) {
check(2) {
break;
}
default: {
break L4;
}
}
}
//3
break;
}
default: {
goingFrom0to4();
L7: while(1) {
//4
switch (the_var) {
check(4) {
break;
}
default: {
break L7;
}
}
}
L9: while(1) {
//5
switch (the_var) {
check(5) {
break L9;
break;
}
default: {
}
}
}
//3
}
}
|