Reset branch to trunk.
[official-gcc.git] / trunk / gcc / testsuite / gcc.dg / tree-ssa / pr14490-2.c
blob925442bb4f2f34641c702be631fe9528a6e6b1ca
1 /* { dg-do compile } */
2 /* { dg-options "-fdump-tree-gimple -fwrapv" } */
3 int g(int x)
5 return (x - 10) < 0;
7 /* There should be no x >= 9 and one x - 10. */
8 /* { dg-final { scan-tree-dump-times "<= 9" 0 "gimple"} } */
9 /* { dg-final { scan-tree-dump-times "\\+ -10" 1 "gimple"} } */
10 /* { dg-final { cleanup-tree-dump "gimple" } } */