[gcc]
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr45234.c
blob3996fa27fb6b41dd2f1cdd4f4db282aacf0ff9ee
1 /* PR middle-end/45234 */
2 /* { dg-do compile } */
3 /* { dg-options "-march=i586" { target ia32 } } */
5 struct S { union { double b[4]; } a[18]; } s, a[5];
6 void foo (struct S);
7 struct S bar (struct S, struct S *, struct S);
9 void
10 foo (struct S arg)
14 void
15 baz (void)
17 foo (bar (s, &a[1], a[2]));