aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/leaf.c
blob: 936523a930d5268fb4e1c18d62ac6c302c91a611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
static int local_static;
void __attribute__ ((leaf)) leaf_call (void);

int
clobber_it (void)
{
  return local_static++;
}
int
test (void)
{
  local_static = 9;
  leaf_call ();
  return local_static;
}
/* { dg-final { scan-tree-dump-times "return 9" 1 "optimized"} } */
 
/* { dg-final { cleanup-tree-dump "optimized" } } */