summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/asan/pr82792.C
blob: 99f1c35328c70f60c8c583e5c88f2f8843347c47 (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
/* PR sanitizer/82792 */
/* { dg-do compile } */
/* { dg-options "-fsanitize=address" } */

extern int
test (int i, int j)
{
  long c;
  (c) = 1;
  switch (i)
    {
    case 1:
      if (j)
	{
	  c = 1;
	}
      goto default_case;
    case 2:
      {
	if (j)
	  {
	    c = 0;
	  }
      }
      __attribute ((fallthrough));
    default_case:
    default:
      c = 0;
      break;
    }
  return 0;
}