re PR debug/47106 (-fcompare-debug failure (length) with -fpartial-inlining -flto -fconserve-stack)

PR debug/47106
PR debug/47402
* cgraph.h (compute_inline_parameters): Return void.
* ipa-inline.c (compute_inline_parameters): Adjust.

From-SVN: r170188
This commit is contained in:
Alexandre Oliva 2011-02-15 18:36:56 +00:00 committed by Alexandre Oliva
parent 30925d946a
commit de65042216
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2011-02-15 Alexandre Oliva <aoliva@redhat.com>
PR debug/47106
PR debug/47402
* cgraph.h (compute_inline_parameters): Return void.
* ipa-inline.c (compute_inline_parameters): Adjust.
2011-02-15 Alexandre Oliva <aoliva@redhat.com>
PR debug/47106

View File

@ -769,7 +769,7 @@ varpool_next_static_initializer (struct varpool_node *node)
/* In ipa-inline.c */
void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool, bool);
unsigned int compute_inline_parameters (struct cgraph_node *);
void compute_inline_parameters (struct cgraph_node *);
/* Create a new static variable of type TYPE. */

View File

@ -1975,7 +1975,7 @@ estimate_function_body_sizes (struct cgraph_node *node)
}
/* Compute parameters of functions used by inliner. */
unsigned int
void
compute_inline_parameters (struct cgraph_node *node)
{
HOST_WIDE_INT self_stack_size;
@ -2013,7 +2013,6 @@ compute_inline_parameters (struct cgraph_node *node)
/* Inlining characteristics are maintained by the cgraph_mark_inline. */
node->global.time = inline_summary (node)->self_time;
node->global.size = inline_summary (node)->self_size;
return 0;
}