]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/i386/sibcall-1.c
re PR target/60104 (load not folded into indirect branch on x86-64)
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / i386 / sibcall-1.c
1 /* { dg-do compile { target { ia32 && nonpic } } } */
2 /* { dg-options "-O2" } */
3
4 extern int (*foo)(int);
5
6 int boo (int a)
7 {
8 return (*foo) (a);
9 }
10
11 /* { dg-final { scan-assembler-not "mov" } } */