This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/13754] New: [3.4 regression] ip2k-elf ICE on multiple gotos
- From: "dhazeghi at yahoo dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 20 Jan 2004 00:42:05 -0000
- Subject: [Bug target/13754] New: [3.4 regression] ip2k-elf ICE on multiple gotos
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
While going through 13747, I found the following snippet which ICEs
for ip2k-elf target with 3.4 branch, but not on 3.3 branch:
void
uip_process(int flag)
{
switch(flag) {
case 1:
goto a;
case 2:
case 3:
goto b;
case 4:
goto c;
}
a:
b:
c:
return;
}
--
Summary: [3.4 regression] ip2k-elf ICE on multiple gotos
Product: gcc
Version: 3.4.0
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P2
Component: target
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: dhazeghi at yahoo dot com
CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: ip2k-elf
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13754