PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / inline-33.c
blob6ce3a5326b8110ccbcd89ad6a6adbd158b5cea60
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fdump-tree-optimized" } */
3 /* { dg-add-options bind_pic_locally } */
5 int i;
7 int foo ();
8 int bar ();
10 int
11 main ()
13 return foo (i);
16 int foo (i)
17 int i;
19 return bar(i);
22 /* { dg-final { scan-tree-dump-times "bar" 2 "optimized" } } */