You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
314 B
25 lines
314 B
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
|
|
#ifdef PACKED
|
|
#define P __attribute__((packed))
|
|
#else
|
|
#define P
|
|
#endif
|
|
|
|
struct UnPacked {
|
|
int X;
|
|
int Y;
|
|
};
|
|
|
|
struct P M_Packed {
|
|
unsigned char A;
|
|
struct UnPacked B;
|
|
};
|
|
|
|
struct M_Packed sM_Packed;
|
|
|
|
int testM_Packed (void) {
|
|
struct M_Packed x;
|
|
return (x.B.Y != 0);
|
|
}
|