* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-ccp-38.c
blobe5fb813c5ffc74d686a8fd6a74b371d1cc969980
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-ccp1" } */
4 int foo (_Bool x)
6 _Bool t = 1;
7 _Bool xx = !x;
8 _Bool y = xx == t;
9 _Bool z = y == x;
10 return z ? 1 : 0;
13 /* { dg-final { scan-tree-dump "return 0;" "ccp1" } } */