mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
cce5b90ede
llvm-svn: 73729
27 lines
412 B
C
27 lines
412 B
C
// RUN: %llvmgcc %s -S -o -
|
|
// rdar://6983634
|
|
|
|
typedef struct A *Foo;
|
|
#pragma pack(push, 2)
|
|
struct Bar {
|
|
Foo f1;
|
|
unsigned short f2;
|
|
float f3;
|
|
};
|
|
struct Baz {
|
|
struct Bar f1;
|
|
struct Bar f2;
|
|
};
|
|
struct Qux {
|
|
unsigned long f1;
|
|
struct Baz f2;
|
|
};
|
|
extern const struct Qux Bork;
|
|
const struct Qux Bork = {
|
|
0,
|
|
{
|
|
{0},
|
|
{0}
|
|
}
|
|
};
|