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

int i;

int foo ();
int bar ();

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

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

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