* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-ccp-22.c
blobb4476e6bb304a8270b402fef35db3b0659cb1d40
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-ccp1" } */
4 /* Make sure we propagate through builtins. */
6 int foo (unsigned b)
8 unsigned t = -1;
9 int x = b <= t;
10 long l = __builtin_expect (x, 0);
11 return l;
14 /* { dg-final { scan-tree-dump "return 1;" "ccp1" } } */