This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/12870] ICE: opnum_of_phi, at tree-ssa-pre.c:1151
- From: "falk at debian dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 1 Nov 2003 18:36:17 -0000
- Subject: [Bug c/12870] ICE: opnum_of_phi, at tree-ssa-pre.c:1151
- References: <20031101132447.12870.marcus@jet.franken.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12870
falk at debian dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From falk at debian dot org 2003-11-01 18:36 -------
I can confirm this with with 20031101. I stumbled upon the same error message
with this test case:
void
bb_getopt_ulflags (char *s)
{
for (;;)
if (s[1])
do
s++;
while (*s);
}