Corrected date in changelog
[official-gcc.git] / gcc / testsuite / gcc.dg / asan / pr78832.c
blobdeed8f17da64c49e5839953315c7dfcd18953a9d
1 /* PR sanitizer/78832 */
2 /* { dg-do compile } */
3 /* { dg-additional-options "-fcompare-debug" } */
5 void bar (int *);
7 int
8 foo (int x)
10 int *f = 0;
11 if (x)
12 goto lab;
14 int y, z;
15 bar (&y);
16 int *d = &y;
17 bar (&z);
18 int *e = &z;
20 f = &x;
21 lab: return 6;