Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp47.c
blob28a8808e8e96f40ba7cb8626c1abbb362a61ac45
1 /* Setting LOGICAL_OP_NON_SHORT_CIRCUIT to 0 inhibits the setcc
2 optimizations that expose the VRP opportunity. */
3 /* Skip on S/390. Lower values in BRANCH_COST lead to two conditional
4 jumps when evaluating an && condition. VRP is not able to optimize
5 this. */
6 /* { dg-do compile { target { ! { logical_op_short_circuit || { s390*-*-* mn10300-*-* hppa*-*-* m68k*-*-* } } } } } */
7 /* { dg-options "-O2 -fdump-tree-vrp1 -fdump-tree-dom2 -fdump-tree-vrp2" } */
8 /* { dg-additional-options "-march=i586" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
10 int h(int x, int y)
12 if ((x >= 0 && x <= 1) && (y >= 0 && y <= 1))
13 return x && y;
14 else
15 return -1;
18 int g(int x, int y)
20 if ((x >= 0 && x <= 1) && (y >= 0 && y <= 1))
21 return x || y;
22 else
23 return -1;
26 int f(int x)
28 if (x != 0 && x != 1)
29 return -2;
31 else
32 return !x;
35 /* Test that x and y are never compared to 0 -- they're always known to be
36 0 or 1. */
37 /* { dg-final { scan-tree-dump-times "\[xy\]\[^ \]* !=" 0 "vrp1" } } */
39 /* These two are fully simplified by VRP1. */
40 /* { dg-final { scan-tree-dump-times "x\[^ \]* \[|\] y" 1 "vrp1" } } */
41 /* { dg-final { scan-tree-dump-times "x\[^ \]* \\^ 1" 1 "vrp1" } } */
43 /* VRP2 gets rid of the remaining & 1 operations, x and y are always
44 either 0 or 1. */
45 /* { dg-final { scan-tree-dump-times " & 1;" 0 "vrp2" } } */