aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr110992.c
blob: 05e9b9267e6f2249d80217b1aea029cf791db02a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-evrp" } */

void foo (int);

int f(unsigned b, short c)
{
  int bt = b;
  int bt1 = bt;
  int t = bt1 & -(c!=0);
 // int t = bt1 * (c!=0);

  if (!t) return 0;
  foo(bt == 0);
  return 0;
}

/* { dg-final { scan-tree-dump-times "foo \\(0\\)" 1 "evrp" } } */