blob: c8c7a594d0b6a9c1950a4126d466f6816db866e1 [file] [log] [blame]
// RUN: %llvmgcc -S %s -o -
// PR1744
typedef struct foo { int x; char *p; } FOO;
extern FOO yy[];
int *y = &((yy + 1)->x);
void *z = &((yy + 1)->x);