1 /* PR middle-end/104558 */
2 /* { dg-do compile } */
3 /* { dg-options "-fabi-version=9" } */
4
5 struct __attribute__ ((aligned)) A {};
6
7 struct A a;
8
9 void bar (int, int, int, int, int, int, int, struct A);
10
11 void
12 foo (void)
13 {
14 bar (0, 1, 2, 3, 4, 5, 6, a);
15 }