blob: e95030c089ea5a4b977fd87a333f8d986878b5d5 [file] [log] [blame]
/* PR c/11446: packed on a struct takes precedence over aligned on the type
of a field. */
/* { dg-do run } */
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;
}