summaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2009-06-18-StaticInitTailPadPack.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2009-06-18-StaticInitTailPadPack.c')
-rw-r--r--test/FrontendC/2009-06-18-StaticInitTailPadPack.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/FrontendC/2009-06-18-StaticInitTailPadPack.c b/test/FrontendC/2009-06-18-StaticInitTailPadPack.c
deleted file mode 100644
index 17f35c0..0000000
--- a/test/FrontendC/2009-06-18-StaticInitTailPadPack.c
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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}
- }
-};
OpenPOWER on IntegriCloud