http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49735

rsand...@gcc.gnu.org <rsandifo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rsandifo at gcc dot gnu.org

--- Comment #7 from rsandifo at gcc dot gnu.org <rsandifo at gcc dot gnu.org> 
2011-07-19 18:09:45 UTC ---
(In reply to comment #6)
> (In reply to comment #5)
> > It probably papers over a different issue though - even recursive inlining
> > should be limited by a --param, but appearantly that is not working here.
> > 
> > Honza?
> 
> Oh it is working, just since this is a simple wrapper function (infinite loop
> kinda) it is inlinining a lot.

I think Richard's point was that something like:

void bar (void);
static void foo (void) { bar (); }
void bar (void) __attribute__((alias("foo")));

shouldn't make gcc recurse infinitely (but now does).

Richard

Reply via email to