diff options
Diffstat (limited to 'test/FrontendC/2007-11-28-GlobalInitializer.c')
-rw-r--r-- | test/FrontendC/2007-11-28-GlobalInitializer.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/FrontendC/2007-11-28-GlobalInitializer.c b/test/FrontendC/2007-11-28-GlobalInitializer.c deleted file mode 100644 index c8c7a594d0b6..000000000000 --- a/test/FrontendC/2007-11-28-GlobalInitializer.c +++ /dev/null @@ -1,8 +0,0 @@ -// 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); - |