summaryrefslogtreecommitdiff
path: root/test/FrontendC/2007-11-28-GlobalInitializer.c
blob: c8c7a594d0b6a9c1950a4126d466f6816db866e1 (plain)
1
2
3
4
5
6
7
8
// 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);