PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-1.c
blob272228dd64061b59a35efd91f80024453bc3d0df
1 /* { dg-do compile { target { { ! x32 } && nonpic } } } */
2 /* { dg-options "-O2" } */
4 extern int (*foo)(int);
6 int boo (int a)
8 return (*foo) (a);
11 /* { dg-final { scan-assembler-not "mov" } } */