jit: Fix Darwin bootstrap after r15-1699.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43084.c
blobdc75982f4573271bdde1d90d0f3611abc8599b6d
1 /* PR debug/43084 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fwhole-program -fcompare-debug" } */
5 struct S
7 int a;
8 };
10 int
11 main ()
13 struct S s;
14 struct S *p = &s;
15 return p->a;