This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/14730] New: [tree-ssa] ICE on a switch statement with a case which is bigger than the type of switcher
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 Mar 2004 05:14:52 -0000
- Subject: [Bug middle-end/14730] New: [tree-ssa] ICE on a switch statement with a case which is bigger than the type of switcher
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
int t(char i)
{
switch (i)
{
case 1:
case 7:
case 10:
case 14:
case 9:
case 256:
return 0;
}
return 0;
}
--
Summary: [tree-ssa] ICE on a switch statement with a case which
is bigger than the type of switcher
Product: gcc
Version: tree-ssa
Status: UNCONFIRMED
Keywords: ice-on-valid-code
Severity: normal
Priority: P2
Component: middle-end
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: pinskia at gcc dot gnu dot org
CC: gcc-bugs at gcc dot gnu dot org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14730