24 lines
327 B
C++
24 lines
327 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;
|
||
|
char c;
|
||
|
|
||
|
};
|
||
|
|
||
|
struct M_Packed sM_Packed;
|
||
|
|
||
|
int testM_Packed (void) {
|
||
|
struct M_Packed x;
|
||
|
return (x.i_Packed != 0);
|
||
|
}
|