diff options
Diffstat (limited to 'test/CodeGen/2007-04-05-PackedStruct.c')
-rw-r--r-- | test/CodeGen/2007-04-05-PackedStruct.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/2007-04-05-PackedStruct.c b/test/CodeGen/2007-04-05-PackedStruct.c new file mode 100644 index 0000000000000..1e9171e4235e8 --- /dev/null +++ b/test/CodeGen/2007-04-05-PackedStruct.c @@ -0,0 +1,18 @@ +// RUN: %clang_cc1 %s -emit-llvm -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 }; +} |