This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: egcs-20000306 ICE in `size_binop', at fold-const.c:1873
- To: vonbrand at sleipnir dot valparaiso dot cl, Richard Kenner <kenner at vlsi1 dot ultra dot nyu dot edu>
- Subject: Re: egcs-20000306 ICE in `size_binop', at fold-const.c:1873
- From: Mark Mitchell <mark at codesourcery dot com>
- Date: Sun, 12 Mar 2000 09:18:21 -0800
- Cc: gcc-bugs at gcc dot gnu dot org
- Organization: CodeSourcery, LLC
- References: <200003121601.e2CG17b18610@sleipnir.valparaiso.cl>
Kenner --
Would you mind taking a look at this? It looks related to the
recent size_binop changes. This is C, and apparently fails
independent of platform -- according to the reporter it certainly
fails on x86.
--
Mark Mitchell mark@codesourcery.com
CodeSourcery, LLC http://www.codesourcery.com
struct {
char a[5];
} *p;
int main ()
{
int i = -1;
if(p->a[-i])
return 1;
}