YouCompleteMe/cpp/llvm/tools/clang/test/CodeGenCXX/2007-04-05-PackedBitFields-1.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

23 lines
335 B
C++

// 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);
}