This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug rtl-optimization/34408] Invalid RTL sharing with -fsee and inline functions



------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]