1/* PR target/60516 */
2/* { dg-do compile { target { ! x32 } } } */
3/* { dg-options "-O2" } */
4
5struct S { char c[65536]; };
6
7__attribute__((ms_abi, thiscall)) void
8foo (void *x, struct S y)
9{
10}
11
12__attribute__((ms_abi, fastcall)) void
13bar (void *x, void *y, struct S z)
14{
15}
16
17__attribute__((ms_abi, stdcall)) void
18baz (struct S x)
19{
20}
21