Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / execute / vrp-5.c
blob8f3c7255a02134d0e4f1e1eec72c95f16e8d2f05
1 extern void exit (int);
2 extern void abort ();
4 void test(unsigned int a, unsigned int b)
6 if (a < 5)
7 abort();
8 if (b < 5)
9 abort();
10 if (a + b != 0U)
11 abort();
14 int main(int argc, char *argv[])
16 unsigned int x = 0x80000000;
17 test(x, x);
18 exit (0);