aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/vrp48.c
blob: a4234659917208bfd674a0bd8e8c5c8e67017cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do link } */
/* { dg-options "-O2" } */

extern void link_failure (void);

static int __attribute__ ((noinline)) foo (int x)
{
  if (x >= 1)
    if (x <= 10)
      {
	if (x < 1 || x > 10)
	  link_failure ();
	x = x + 1;
      }
  return x;
}

int main (void)
{
  int i = foo (0);
  return 0;
}