aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wimplicit-fallthrough-39.c
blob: d06bc0db5eccc8531e1565648d58bfc8710d22a0 (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
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
/* PR middle-end/103597 */
/* { dg-do compile } */
/* { dg-options "-Wimplicit-fallthrough" } */

#define E(c, e) if (c) e

int
fn0 (int n)
{
  switch (n)
    {
    case 0:
      E (1, return 0);
    case 1:
      return -1;
    }
  return 0;
}

int
fn1 (int n)
{
  switch (n)
    {
    case 0:
      E (1, goto out);
    case 1:
      return -1;
    }
out:
  return 0;
}

int
fn2 (int n)
{
  switch (n)
    {
    case 0:
      if (1)
       	n++;	  /* { dg-warning "statement may fall through" } */
    case 1:	  /* { dg-message "here" } */
      return -1;
    }
  return 0;
}

int
fn3 (int n)
{
  switch (n)
    {
    case 0:
      if (0)		/* { dg-warning "statement may fall through" } */
       	return 0;
    case 1:		/* { dg-message "here" } */
      return -1;
    }
  return 0;
}

int
fn4 (int n)
{
  switch (n)
    {
    case 0:
      E (0, n++);
      --n;	  /* { dg-warning "statement may fall through" } */
    case 1:	  /* { dg-message "here" } */
      return -1;
    }
  return 0;
}

int
fn5 (int n)
{
  switch (n)
    {
    case 0:
      if (1)
	return 0;
      else
	return -1;
    case 1:
      return -1;
    }
  return 0;
}

int
fn6 (int n)
{
  switch (n)
    {
    case 0:
      if (1)
	return 0;
      else
	{
meow:
	  n--;  /* { dg-warning "statement may fall through" } */
	}
    case 1:   /* { dg-message "here" } */
      return -1;
    case 2:
      goto meow;
    }
  return 0;
}

int
fn7 (int n)
{
  switch (n)
    {
    case 0:
      if (1)
       	return 0;
woof:
    case 1:
      return -1;
    }
  return 0;
}

int
fn8 (int n)
{
  switch (n)
    {
    case 0:
      if (1) n++; /* { dg-warning "statement may fall through" } */
woof:		  /* { dg-message "here" } */
    case 1:
      return -1;
    }
  return 0;
}