PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr23467.c
blob71ec3da424b4b75902f52b3fd4237e20932cad7d
1 struct s1
3 int __attribute__ ((aligned (8))) a;
4 };
6 struct
8 char c;
9 struct s1 m;
10 } v;
12 int
13 main (void)
15 if ((int)&v.m & 7)
16 abort ();
17 exit (0);