Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-dom-cse-4.c
blobcc9dde95255b4c2c3e518ebf20367235374f826e
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-optimized" } */
4 extern void abort (void);
6 unsigned int
7 foo (unsigned int x, unsigned int y)
9 unsigned int z;
11 if (x >= y)
12 return 1;
14 if (y == x)
15 abort ();
17 return 0;
20 /* { dg-final { scan-tree-dump-not "abort" "optimized" } } */