Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / vrp21.c
blob87cdfeeab7c4e3525383500ed5902db6d74b8ee4
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -ftree-vrp -fdump-tree-vrp1" } */
3 /* { dg-require-effective-target int32plus } */
5 extern void link_error ();
7 void test01(unsigned int a, unsigned int b)
9 unsigned int x = 0x80000000;
10 if (a < x)
11 if (b < x)
12 if (a > 5)
13 if (a + b == 0U)
14 link_error ();
17 void test02(unsigned int a, unsigned int b)
19 unsigned int x = 0x80000000;
20 if (a > x)
21 if (b < x)
22 if (a - b == 1U)
23 link_error ();
26 /* { dg-final { scan-tree-dump-times "link_error" 0 "vrp1" } } */