PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-7.c
blob6effb8f825607737fb16b3bb965aa01c6a5d2e50
1 /* { dg-do compile { target { ! x32 } } } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler-not "mov" } } */
5 int foo()
7 int (**bar)(void);
8 asm("":"=a"(bar));
9 return (*bar)();