modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/pr23467.c (about)

     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
    15  main (void)
    16  {
    17    if ((int)&v.m & 7)
    18      abort ();
    19    exit (0);
    20  }