[multiple changes]

2005-08-18  Andrew Pinski  <pinskia@physics.uc.edu>

        PR middle-end/23408
        * ipa-inline.c (cgraph_decide_inlining_incrementally): Remove the
        call to ggc_collect.
2005-08-28  Andrew Pinski  <pinskia@physics.uc.edu>

        PR middle-end/23408
        * gcc.dg/pr23408.c: New test.

From-SVN: r103612
This commit is contained in:
Andrew Pinski 2005-08-29 17:48:58 +00:00 committed by Andrew Pinski
parent e677187ed5
commit 57247f4b28
4 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-08-18 Andrew Pinski <pinskia@physics.uc.edu>
PR middle-end/23408
* ipa-inline.c (cgraph_decide_inlining_incrementally): Remove the
call to ggc_collect.
2005-08-18 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/21268

View File

@ -1073,7 +1073,6 @@ cgraph_decide_inlining_incrementally (struct cgraph_node *node, bool early)
node->local.self_insns = node->global.insns;
current_function_decl = NULL;
pop_cfun ();
ggc_collect ();
}
return inlined;
}

View File

@ -1,3 +1,8 @@
2005-08-28 Andrew Pinski <pinskia@physics.uc.edu>
PR middle-end/23408
* gcc.dg/pr23408.c: New test.
2005-08-28 Mark Mitchell <mark@codesourcery.com>
PR c++/23099

View File

@ -0,0 +1,4 @@
/* { dg-do compile } */
/* { dg-options "--param ggc-min-expand=0 --param ggc-min-heapsize=0" } */
static __inline__ int f () { return g (); }
int g () { return f (); }