This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/15643] ICE in replace_ssa_names, at tree-ssa-copy.c:73
- From: "falk at debian dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 May 2004 10:41:18 -0000
- Subject: [Bug middle-end/15643] ICE in replace_ssa_names, at tree-ssa-copy.c:73
- References: <20040525044500.15643.lucier@math.purdue.edu>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From falk at debian dot org 2004-05-25 10:40 -------
Confirmed with alphaev68-linux 3.5.0 20040513
Here's a test case:
void f(int r1, int *fp)
{
void *hlbl_tbl[] = { &&label1 };
goto *hlbl_tbl[r1];
*fp = 0;
label0:
fp += 8;
label1:
*fp = 0;
if (r1)
goto label2;
if (r1)
goto label0;
label2:
;
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15643