summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/2007-04-05-StructPackedFieldUnpacked.cpp
blob: c848e7cb7dd9f1fc8a4ee35f232addb5353c3f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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);
}