This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/65875] [5/6 Regression] ICE: Segmentation fault


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

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |trippels at gcc dot gnu.org
            Summary|internal compiler error     |[5/6 Regression] ICE:
                   |with gcc 5.1                |Segmentation fault

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
int a, b, c, d, e, f, g;
void
fn1 ()
{
  long h = 0, i;
  if (g < 0)
    i = -g;
  for (; b;)
    for (; c;)
      if (e)
        h = 1;
  for (; f;)
    if (a)
      break;
  if (h > i)
    while (h > i)
      {
        d = 0;
        h--;
      }
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]