re PR middle-end/83487 (ICE in expand_call, at calls.c:4098)
[platform/upstream/gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr83487.c
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 }