blob: 1e9171e4235e89f10a257f6954d9b2cb8a218e31 [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(){
struct MyStruct MS = { tB, 0 };
}