IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / inline-33.c
blobd82ff71545b04b05621b6dfa6d1bfa0f5d981931
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -fdump-tree-optimized" } */
3 /* { dg-add-options bind_pic_locally } */
5 int i;
7 int foo ();
9 main ()
11 return foo (i);
14 int foo (i)
15 int i;
17 return bar(i);
20 /* { dg-final { scan-tree-dump-times "bar" 2 "optimized" } } */
21 /* { dg-final { cleanup-tree-dump "optimized" } } */