aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/pr107052.c
blob: 88b5213160d17e73608575dc33fd2c08c1351357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do compile }
// { dg-options "-O2 -fdump-tree-evrp" }

void link_failure();
void f(int a)
{
  a &= 0x300;
  int b =  __builtin_popcount(a);
  if (b > 3)
    link_failure();
}

// { dg-final { scan-tree-dump-not "link_failure" "evrp" } }