minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/2007-04-05-PackedBitFields-1.cpp

23 lines
335 B
C++
Raw Normal View History

// RUN: %clang_cc1 -emit-llvm %s -o -
#ifdef PACKED
#define P __attribute__((packed))
#else
#define P
#endif
struct P M_Packed {
unsigned int l_Packed;
unsigned short k_Packed : 6,
i_Packed : 15,
j_Packed : 11;
};
struct M_Packed sM_Packed;
int testM_Packed (void) {
struct M_Packed x;
return (x.i_Packed != 0);
}