Commit 57247f4b by Andrew Pinski Committed by Andrew Pinski

[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
parent e677187e
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> 2005-08-18 Paolo Bonzini <bonzini@gnu.org>
PR bootstrap/21268 PR bootstrap/21268
......
...@@ -1073,7 +1073,6 @@ cgraph_decide_inlining_incrementally (struct cgraph_node *node, bool early) ...@@ -1073,7 +1073,6 @@ cgraph_decide_inlining_incrementally (struct cgraph_node *node, bool early)
node->local.self_insns = node->global.insns; node->local.self_insns = node->global.insns;
current_function_decl = NULL; current_function_decl = NULL;
pop_cfun (); pop_cfun ();
ggc_collect ();
} }
return inlined; return inlined;
} }
......
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> 2005-08-28 Mark Mitchell <mark@codesourcery.com>
PR c++/23099 PR c++/23099
......
/* { 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 (); }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment