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