1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/CFrontend/2007-02-04-AddrLValue.c

24 lines
227 B
C
Raw Normal View History

2007-02-05 03:19:09 +01:00
// RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
2007-02-05 03:26:07 +01:00
// PR1176
2007-02-05 03:19:09 +01:00
typedef struct
{
char *key;
char *value;
} T1;
typedef struct
{
long type;
char *value;
} T3;
T1 a[] =
{
{
"",
((char *)&((T3) {1, (char *) 1}))
}
};