1 /* PR target/59927 */
2 /* { dg-do compile { target { ! x32 } } } */
3 /* { dg-options "-O2 -g" } */
4 
5 extern void baz (int) __attribute__ ((__ms_abi__));
6 
7 void
foo(void (* fn)(int))8 foo (void (__attribute__ ((ms_abi)) *fn) (int))
9 {
10   fn (0);
11 }
12 
13 void
bar(void)14 bar (void)
15 {
16   baz (0);
17 }
18