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

     1  /* PR middle-end/83487 */
     2  
     3  struct __attribute__ ((aligned)) A {};
     4  struct A a;
     5  void bar (int, int, int, int, int, int, int, struct A);
     6  
     7  void
     8  foo (void)
     9  {
    10    bar (0, 1, 2, 3, 4, 5, 6, a);
    11  }