aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr22230.c
blob: 4d65349093454a0869aca85f39687a5df8fa140b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do run } */
/* { dg-options "-O1 -ftree-vrp" } */

/* PR tree-optimization/22230

   The meet of the ranges in "i*i" was not computed correctly, leading
   gcc to believe that a was equal to 0 after the loop.  */

extern void abort (void) __attribute__((noreturn));

int main (void)
{
  long a, i;

  for (i = 0; i < 5; i++)
    a = i * i;
  if (a != 16)
    abort ();
  return 0;
}