diff options
Diffstat (limited to 'test/FrontendC/2007-02-04-AddrLValue.c')
-rw-r--r-- | test/FrontendC/2007-02-04-AddrLValue.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/test/FrontendC/2007-02-04-AddrLValue.c b/test/FrontendC/2007-02-04-AddrLValue.c deleted file mode 100644 index 214fce7..0000000 --- a/test/FrontendC/2007-02-04-AddrLValue.c +++ /dev/null @@ -1,23 +0,0 @@ -// RUN: %llvmgcc %s -O3 -S -o - -// PR1176 - -typedef struct -{ - char *key; - char *value; -} T1; - -typedef struct -{ - long type; - char *value; -} T3; - -T1 a[] = -{ - { - "", - ((char *)&((T3) {1, (char *) 1})) - } -}; - |