This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/33166] [4.3 Regression] ICE in get_indirect_ref_operands, at tree-ssa-operands.c:1698
- From: "tbm at cyrius dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 23 Aug 2007 19:55:49 -0000
- Subject: [Bug tree-optimization/33166] [4.3 Regression] ICE in get_indirect_ref_operands, at tree-ssa-operands.c:1698
- References: <bug-33166-12387@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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