1 /* { dg-skip-if "small alignment" { pdp11-*-* } } */ 2 3 struct s1 4 { 5 int __attribute__ ((aligned (8))) a; 6 }; 7 8 struct 9 { 10 char c; 11 struct s1 m; 12 } v; 13 14 int main(void)15 main (void) 16 { 17 if ((int)&v.m & 7) 18 abort (); 19 exit (0); 20 } 21