aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/factor_op_phi-2.c
blob: 93e2eb3a051c5629b42fc2cb1d77525bdbddca2b (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
27
28
29
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-phiopt1-details -fdump-tree-optimized" } */

/* PR tree-optimization/112418 */

/* This is factor_op_phi-1.c but with statements swapped in the inner if. */

int f(int a, int b, int d)
{
  int c;
  if (a < 0)
  {
        c = d > 0 ? d : -d;
        a = -a;
  }
  else
  {
        c = d > 0 ? d : -d;
        a = a;
  }
  return a + c;
}

/* ABS <d> should be able to pull out of the if statement early on in phiopt1. */
/* { dg-final { scan-tree-dump "changed to factor operation out from " "phiopt1"  } } */
/* { dg-final { scan-tree-dump-not "if " "phiopt1"  } } */
/* { dg-final { scan-tree-dump-times "ABS_EXPR " 2 "phiopt1" } } */
/* { dg-final { scan-tree-dump-not "if " "optimized" } } */
/* { dg-final { scan-tree-dump-times "ABS_EXPR " 2 "optimized" } } */