aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-ccp-22.c
blob: 01d11ecac87d8df0c3c50c1b12fa8432d50d4a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-ccp1" } */

/* Make sure we propagate through builtins.  */

int foo (unsigned b)
{
  unsigned t = -1;
  int x = b <= t;
  long l = __builtin_expect (x, 0);
  return l;
}

/* { dg-final { scan-tree-dump "return 1;" "ccp1" } } */
/* { dg-final { cleanup-tree-dump "ccp1" } } */