blob: e56e691c4443283165172b0d7136a2d8ae3594fb [file] [log] [blame]
/* { dg-do compile { target ia32 } } */
/* { dg-options "-O2" } */
void (__attribute__ ((stdcall)) *a) (int);
void __attribute__ ((stdcall))
foo (int x)
{
a (x);
}
int (__attribute__ ((stdcall)) *b) (int);
int __attribute__ ((stdcall))
bar (int x)
{
return b (x);
}