blob: de81c44150c15af0cfb15b906d63862c79f819d4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O -fwhole-program -g" } */
extern void *malloc(__SIZE_TYPE__);
struct S {
int i;
};
int main(int argc, char *argv[])
{
int i = argc;
struct S *p = malloc(sizeof (struct S));
return p[i].i;
}