aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/inline-33.c
blob: d82ff71545b04b05621b6dfa6d1bfa0f5d981931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O3 -fdump-tree-optimized"  } */
/* { dg-add-options bind_pic_locally } */

int i;

int foo ();

main ()
{
  return foo (i);
}

int foo (i)
     int i;
{
  return bar(i);
}

/* { dg-final { scan-tree-dump-times "bar"  2 "optimized"  } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */