[Bug rtl-optimization/34408] Invalid RTL sharing with -fsee and inline functions
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Sun Dec 9 21:54:00 GMT 2007
------- Comment #4 from pinskia at gcc dot gnu dot org 2007-12-09 21:54 -------
And here is a reduced testcase which can compiled with either the C or C++
front-ends:
int isLegalIdChar (char);
char get();
char z;
void FillBuffer ( void )
{
char c;
while(1)
{
c = get();
if (!isLegalIdChar(c))
break;
z = c;
}
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34408
More information about the Gcc-bugs
mailing list