Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43317.c
blobde81c44150c15af0cfb15b906d63862c79f819d4
1 /* { dg-do compile } */
2 /* { dg-options "-O -fwhole-program -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;