blob: afb53069bcf0c47d36e212476afd4eb4d25487c6 [file] [log] [blame]
/* PR target/59927 */
/* { dg-do compile { target { ! x32 } } } */
/* { dg-options "-O2 -g" } */
extern void baz (int) __attribute__ ((__ms_abi__));
void
foo (void (__attribute__ ((ms_abi)) *fn) (int))
{
fn (0);
}
void
bar (void)
{
baz (0);
}