blob: 71ec3da424b4b75902f52b3fd4237e20932cad7d [file] [log] [blame]
struct s1
{
int __attribute__ ((aligned (8))) a;
};
struct
{
char c;
struct s1 m;
} v;
int
main (void)
{
if ((int)&v.m & 7)
abort ();
exit (0);
}