mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-26 13:10:42 +00:00
new testcase for rdar://6983634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73729 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4a7893b452
commit
3ea4edce6a
26
test/FrontendC/2009-06-18-StaticInitTailPadPack.c
Normal file
26
test/FrontendC/2009-06-18-StaticInitTailPadPack.c
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// 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}
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user