aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/asan/pr81186.c
blob: 7f0f672ca40a3394226f79746385535c18478b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* PR sanitizer/81186 */
/* { dg-do run } */

int
main ()
{
  __label__ l;
  void f ()
  {
    int a[123];

    goto l;
  }

  f ();
l:
  return 0;
}