This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/17690] ICE while compiling gcc-cvs for target ip2k-elf
- 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: 27 Sep 2004 22:22:35 -0000
- Subject: [Bug target/17690] ICE while compiling gcc-cvs for target ip2k-elf
- References: <20040927101527.17690.stefan_banks@despammed.com>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-09-27 22:22 -------
I should say I reduced to:
unsigned int
size_of_encoded_value (unsigned char encoding)
{
if (encoding == 0xff)
return 0;
switch (encoding & 0x07)
{
case 0x00:
return sizeof (void *);
case 0x02:
return 2;
case 0x03:
return 4;
case 0x04:
return 8;
}
abort ();
}
which means that it is a dup as return is changed to goto by the middle-end.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17690