(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
pr23467.c
       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  }