This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug rtl-optimization/34408] Invalid RTL sharing with -fsee and inline functions
- 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: 9 Dec 2007 21:54:13 -0000
- Subject: [Bug rtl-optimization/34408] Invalid RTL sharing with -fsee and inline functions
- References: <bug-34408-9717@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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