diff options
Diffstat (limited to 'clang/test/CodeGen/2007-04-05-PackedStruct.c')
-rw-r--r-- | clang/test/CodeGen/2007-04-05-PackedStruct.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2007-04-05-PackedStruct.c b/clang/test/CodeGen/2007-04-05-PackedStruct.c new file mode 100644 index 0000000..1e9171e --- /dev/null +++ b/clang/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 }; +} |