blob: 26021c56ca4b0e976af18ddf3b16703e07f489cc [file] [log] [blame]
// PR 8656
// { dg-do compile { target i?86-*-* } }
extern int * (__attribute__((stdcall)) *fooPtr)( void);
int * __attribute__((stdcall)) myFn01( void) { return 0; }
void snafu( void)
{
fooPtr = myFn01;
}