PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr45234.c
blobd0579b5ea8dc3463ec38eb81863995cad0a55869
1 /* PR middle-end/45234 */
2 /* { dg-do compile { target ia32 } } */
3 /* { dg-options "-march=i586" } */
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]));