[Bug tree-optimization/79302] ICE in add_loop_constraints, at graphite-sese-to-poly.c:933 building 445.gobmk

marxin at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Tue Jan 31 12:55:00 GMT 2017


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79302

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2017-01-31
                 CC|                            |marxin at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #3 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:

*a;
b;
f ()
{
  int c;
  while (b)
    if (-b > c)
      {
        int d, e;
        for (; e < d; e++)
          a[e] = d;
      }
    else
      {
        int d, e;
        for (; e < d; e++)
          a[e] = a;
      }
}


More information about the Gcc-bugs mailing list