aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr28905.c
blob: 83a381ab8c9ba7707512e6feeda107c274eac707 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* We used to ICE here because after VRP we ended up with
   non-compatible ranges in a value-range equivalences set.  */
void code_comment (int size)
{
  int i;
  for (i = 0; i < size; i++)
    if (i)
      if (i < 0)
        if (i < 0)
          return;
}