aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/dup_compare_cond-1.c
blob: 0321a60b34f89067d5b7a6feb1d946ccd6380e54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-fgimple -O0 -fdump-tree-optimized " } */
/* PR tree-optimization/116101 */

int __GIMPLE() f(int a, int b, int c, int d, int e)
{
  _Bool t;
  int ff;
  int gg;
  int res;
  t = a == b;
  ff = t ? a : e;
  gg = t ? d : b;
  res = ff+gg;
  return res;
}

/* At -O0 we should not duplicate the comparison. */
/* { dg-final { scan-tree-dump-times " == " 1 "optimized" } } */