IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43317.c
blobcc5832aee36ed86df7ff1fd752540d918026cd89
1 /* { dg-do compile } */
2 /* { dg-options "-O -fipa-struct-reorg -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;