aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pack-test-5.c
blob: 3a52a002bd5eb99251ab5c1c69fb06d5ea9a0c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* PR c/11446: packed on a struct takes precedence over aligned on the type
   of a field.  */
/* { dg-do run } */
/* { dg-additional-options "-mno-ms-bitfields" { target *-*-mingw* } } */

extern void abort (void);

struct A {
  double d;
} __attribute__ ((aligned));

struct B {
  char c;
  struct A a;
} __attribute__ ((packed));

int main ()
{
  if (sizeof (struct B) != sizeof (char) + sizeof (struct A))
    abort ();
  return 0;
}