[Bug tree-optimization/33166] [4.3 Regression] ICE in get_indirect_ref_operands, at tree-ssa-operands.c:1698

tbm at cyrius dot com gcc-bugzilla@gcc.gnu.org
Thu Aug 23 19:56:00 GMT 2007



------- Comment #1 from tbm at cyrius dot com  2007-08-23 19:55 -------
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */

void ConvertAddr (char *saddr, void **addr)
{
  *addr = (void *) &saddr;
}
void DefineSelf (char *addr)
{
  int i;
  for (i = 0; i < 20; i += 4) {
    ConvertAddr (addr, (void **) &addr);
    if (addr[0] == 127 && addr[1] == 0 && addr[2] == 0 && addr[3] == 1)
      continue;
  }
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33166



More information about the Gcc-bugs mailing list