diff options
-rw-r--r-- | test/CFrontend/2007-11-28-GlobalInitializer.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/CFrontend/2007-11-28-GlobalInitializer.c b/test/CFrontend/2007-11-28-GlobalInitializer.c new file mode 100644 index 0000000000..c8c7a594d0 --- /dev/null +++ b/test/CFrontend/2007-11-28-GlobalInitializer.c @@ -0,0 +1,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); + |