aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/wholeprogram-1.c
blob: 9d0af1f2391f85b789129c04709ad8deaf6af013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-options "-O2 -fdump-tree-optimized -fwhole-program" } */
int b[100];
void abort (void);

void
large_function ()
{
  int i;
  for (i = 0; i < 99; i++)
    if (b[i] / (b[i+1] + 1))
      abort ();
}

main ()
{
  large_function ();
}

/* Function should be inlined as called once.  */
/* { dg-final { scan-tree-dump-not "large_function" "optimized"} } */

/* { dg-final { cleanup-tree-dump "optimized" } } */