aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2007-04-05-PackedStruct.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2007-04-05-PackedStruct.c')
-rw-r--r--test/FrontendC/2007-04-05-PackedStruct.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/FrontendC/2007-04-05-PackedStruct.c b/test/FrontendC/2007-04-05-PackedStruct.c
deleted file mode 100644
index 0d524c4..0000000
--- a/test/FrontendC/2007-04-05-PackedStruct.c
+++ /dev/null
@@ -1,18 +0,0 @@
-// RUN: %llvmgcc %s -S -o -
-
-#pragma pack(push, 2)
-
-enum {
- tA = 0,
- tB = 1
-};
-
-struct MyStruct {
- unsigned long A;
- char C;
- void * B;
-};
-
-void bar(){
-struct MyStruct MS = { tB, 0 };
-}