minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/2007-04-05-PackedBitFieldsSmall.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

27 lines
446 B
C++

// RUN: %clang_cc1 -emit-llvm %s -o -
#ifdef PACKED
// This is an example where size of Packed struct is smaller then
// the size of bit field type.
#define P __attribute__((packed))
#else
#define P
#endif
struct P M_Packed {
unsigned long long X:50;
unsigned Y:2;
};
struct M_Packed sM_Packed;
int testM_Packed (void) {
struct M_Packed x;
return (0 != x.Y);
}
int testM_Packed2 (void) {
struct M_Packed x;
return (0 != x.X);
}