summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-hoist-4.c
blob: fa206e67357a258d4ee4bceb1521f32834bc4f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */

/* From PR21485.  */

long
NumSift (long *array, int b, unsigned long k)
{
  if (b)
    if (array[k] < array[k + 1L])
      ++k;
  return array[k];
}

/* There should be only two loads left.  And the final value in the
   if (b) arm should be if-converted:
     tem1 = array[k];
     if (b)
       tem1 = MAX (array[k+1], tem1)
     return tem1;  */

/* { dg-final { scan-tree-dump-times "= \\*" 2 "optimized" } } */
/* { dg-final { scan-tree-dump-times "MAX_EXPR" 1 "optimized" } } */
/* { dg-final { scan-tree-dump-times "= PHI" 1 "optimized" } } */