blob: a65c6818de0c745d4087c77a5d41d36fdcc5b057 [file] [log] [blame]
// 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(void){
struct MyStruct MS = { tB, 0 };
}