PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr69246.c
blobe56e691c4443283165172b0d7136a2d8ae3594fb
1 /* { dg-do compile { target ia32 } } */
2 /* { dg-options "-O2" } */
4 void (__attribute__ ((stdcall)) *a) (int);
6 void __attribute__ ((stdcall))
7 foo (int x)
9 a (x);
12 int (__attribute__ ((stdcall)) *b) (int);
14 int __attribute__ ((stdcall))
15 bar (int x)
17 return b (x);