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

/* Another nested switch.  Check that we don't warn here.  */

void
f (int i)
{
  int j = 0;
  switch (i)
    {
    case 0:
    case 1:
      j = 10;
      __attribute__((fallthrough));
    case 2:
      j += 10;
      break;
    case 3:
      switch (i)
	{
	case 5:
	  j += 2;
	  __attribute__((fallthrough));
	case 6:
	  j += 4;
	  break;
	}
   }
}