1 /* Ensure that we continue to consider FOO local, even though
2    it has been deferred.  */
3 /* { dg-do compile { target fpic } } */
4 /* { dg-options "-O3 -finline-limit=0 -fpic" } */
5 
foo(void)6 static int foo(void)
7 {
8   return 3;
9 }
10 
bar(void)11 int bar(void)
12 {
13   /* Call twice to avoid bypassing the limit for functions called once.  */
14   return foo() + foo() + 1;
15 }
16 
17 /* { dg-final { scan-assembler-not "PLT" { target i?86-*-* x86_64-*-* } } } */
18 /* { dg-final { scan-assembler-not "plt" { target powerpc*-*-* } } } */
19