blob: 693c765951350379a4c9cabab94db01ccbf603c4 [file] [log] [blame]
/* PR target/59927 */
/* { dg-do compile } */
/* { 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);
}