This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: c/3530: shorter version
- To: gcc-bugs at gcc dot gnu dot org
- Subject: Re: c/3530: shorter version
- From: Blair Kelly III <bfkelly at afterlife dot ncsc dot mil>
- Date: Mon, 2 Jul 2001 10:32:10 -0400 (EDT)
- Cc: bowronch at msu dot edu
I believe the following is a shorter version of
C code that shows bug
c/3530: Internal compiler error in change_address, at emit-rtl.c:1635
------ foo.c ------
double foo()
{
int array[1019]; /* 1019 is smallest value */
double a;
a = sub1();
sub2();
if (a < 0) a = 1;
return a;
}
-------------------
Blair Kelly