aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/split-path-13.c
blob: 8a24972d050ba8af9dd1f136f3b9adf97a28e8ad (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
25
26
/* { dg-do compile } */
/* { dg-options "-O2 -fsplit-paths -fdump-tree-split-paths-details " } */
/* PR tree-optimization/112402 */
/* This is similar to split-path-2.c but instead of the add
   being inside both sides, we have a constant. */

int
foo(signed char *p, int n)
{
  int s = 0;
  int i;

  for (i = 0; i < n; i++) {
    int t;
    if (p[i] >= 0)
      t = 1;
    else
      t = -1;
    s += t;
  }

  return s;
}

/* { dg-final { scan-tree-dump "appears to be a join point for if-convertable" "split-paths" } } */