PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-3.c
blob8154e8f173108caa29a2dbc3837e9ceb9f8a324a
1 /* { dg-do compile { target ia32 } } */
2 /* { dg-options "-O2" } */
4 extern
5 #ifdef _WIN32
6 __declspec (dllimport)
7 #endif
8 void foo (int a);
10 void bar (int a)
12 return foo (a);
15 /* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" } } */