aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/inline-33.c
blob: a8a409d0b7757fb65b96c8de9e78dbfa33c1f0d3 (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 "-std=gnu17 -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"  } } */