Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-17.c
blob6f5d9e445616fa245ff5e9f8e60ea54432454caa
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-optimized" } */
4 int foo (int xx, int xy)
6 xx &=1;
7 xy &=1;
8 return xx ^ xy;
11 /* { dg-final { scan-tree-dump-times " & 1" 1 "optimized" } } */