summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pack-test-5.c
blob: 7645043dd84f1ea62b9b5cd4005c9a0bec911ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR c/11446: packed on a struct takes precedence over aligned on the type
   of a field.  */
/* { dg-do run } */

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;
}