blob: 7645043dd84f1ea62b9b5cd4005c9a0bec911ae4 [file] [log] [blame]
/* 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;
}