File: switch.c

package info (click to toggle)
cc1111 2.9.0-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 38,692 kB
  • ctags: 132,262
  • sloc: ansic: 442,650; cpp: 37,006; sh: 10,334; makefile: 5,511; asm: 5,279; yacc: 2,953; lisp: 1,524; perl: 807; awk: 493; python: 468; lex: 447
file content (158 lines) | stat: -rw-r--r-- 2,088 bytes parent folder | download | duplicates (9)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158

char x;

/* Valid switch statement */
#ifdef TEST1
char foo(void)
{
  switch(x)
    {
      char y;
      
      case 0:
        return 0;
      case 1:
        return 1;
      default:
        y = x+1;
        return y;
    }
}
#endif

/* Error, duplicate cases */
#ifdef TEST2
char foo(void)
{
  switch(x)
    {
      char y;
      
      case 0:		/* IGNORE */
        return 0;
      case 1:
        return 1;
      case 0:		/* ERROR */
        return 0;
      default:
        y = x;
        return y;
    }
}
#endif

/* Error, more than one default */
#ifdef TEST3
char foo(void)
{
  switch(x)
    {
      char y;
      
      case 0:
        return 0;
      case 1:
        return 1;
      default:		/* IGNORE */
        y = x;
        return y;
      default:		/* ERROR */
        return 2;
    }
}
#endif

/* Warn about unreachable code */
#ifdef TEST4
char foo(void)
{
  switch(x)
    {
      char y;
      x++;		/* WARNING(SDCC) */
      
      case 0:
        return 0;
      case 1:
        return 1;
      default:
        y = x;
        return x;
    }
}
#endif

/* Warn about unreachable initializer */
#ifdef TEST5
char foo(void)
{
  switch(x)
    {
      char y=1;		/* WARNING(SDCC) */
      
      case 0:
        return 0;
      case 1:
        return 1;
      default:
        return y;	/* IGNORE */
    }
}
#endif

/* Error, missing switch */
#ifdef TEST6
char foo(void)
{
    {
      case 0:		/* ERROR */
        return 0;
      case 1:		/* ERROR */
        return 1;
      default:		/* ERROR */
        return x;
    }
}
#endif

/* Error, switch condition must be integral */
#ifdef TEST7
char foo(void)
{
  float f;
  f=x;
  switch(f)		/* ERROR */
    {
      char y;
      
      case 0:
        return 0;
      case 1:
        return 1;
      default:
        y = x;
        return x;
    }
  return 0;
}
#endif

/* Error, cases must be integral */
#ifdef TEST8
char foo(void)
{
  switch(x)
    {
      char y;
      
      case 0.0:		/* ERROR */
        return 0;
      case 1:
        return 1;
      default:
        y = x;
        return x;
    }
}
#endif