Merged r158465 through r158660 into branch.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43317.c
blob3ee3ed5493196361251ff60f619505e47963caae
1 /* { dg-do compile } */
2 /* { dg-options "-O -fipa-struct-reorg -fwhole-program -fipa-type-escape -g" } */
4 extern void *malloc(__SIZE_TYPE__);
6 struct S {
7 int i;
8 };
10 int main(int argc, char *argv[])
12 int i = argc;
13 struct S *p = malloc(sizeof (struct S));
14 return p[i].i;