aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/wholeprogram-1.c
blob: 0e54a3b2fd925294680142d6dfa9b408382649b2 (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 ();
}

int
main ()
{
  large_function ();
}

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