File: switch_cast.i

package info (click to toggle)
frama-c 20161101%2Bsilicon%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 42,324 kB
  • ctags: 35,695
  • sloc: ml: 200,142; ansic: 31,465; makefile: 2,334; sh: 1,643; lisp: 259; python: 85; asm: 26
file content (71 lines) | stat: -rw-r--r-- 816 bytes parent folder | download | duplicates (2)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
extern unsigned char x;

void g() {
  int y;

  x = x / 16;

  switch((int)x) {
  case 0:
    y = x;
    break;
  case 1:
    y = x * 2;
    break;
  case 2:
    y = x * 3;
    break;
  case 3:
    y = x * 4;
    break;
  case 4:
    y = x * 5;
    break;
  case 5:
    y = x * 6;
    break;
  case 6:
    y = x * 7;
    break;
  case 7:
    y = x * 8;
    break;
  case 8:
    y = x * 9;
    break;
  case 9:
    y = x * 10;
    break;
  case 10:
    y = x * 11;
    break;
  case 11:
    y = x * 12;
    break;
  case 12:
    y = x * 13;
    break;
  case 13:
    y = x * 14;
    break;
  case 14:
    y = x * 15;
    break;
  case 15:
    y = x * 16;
    break;
  case 16:
    y = x * 17;
    break;
  case 17:
    y = x * 18;
    break;
  default:
  }
  y += 1;
  Frama_C_show_each(y);
}

void main() {
  g();
}