aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr14490-4.c
blob: 90a49bbdd64fd1fd4255771b543ba034c640793b (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-fdump-tree-gimple -fwrapv" } */
int g(int x)
{
   return (x + 10) < 0;
}
/* There should be no x < -10 and one x + 10. */
/* { dg-final { scan-tree-dump-times "< -10" 0 "gimple"} } */
/* { dg-final { scan-tree-dump-times "\\+ 10" 1 "gimple"} } */
/* { dg-final { cleanup-tree-dump "gimple" } } */