PR debug/47106
authoraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Feb 2011 18:36:56 +0000 (18:36 +0000)
committeraoliva <aoliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 15 Feb 2011 18:36:56 +0000 (18:36 +0000)
PR debug/47402
* cgraph.h (compute_inline_parameters): Return void.
* ipa-inline.c (compute_inline_parameters): Adjust.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170188 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cgraph.h
gcc/ipa-inline.c

index eae0e16..a4c0ffc 100644 (file)
@@ -2,6 +2,13 @@
 
        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
+       PR debug/47402
        * tree-inline.h (estimated_stack_frame_size): Take cgraph node
        rather than decl.
        * cfgexpand.c (estimated_stack_frame_size): Likewise.
index 3488150..c00418d 100644 (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.  */
index 595d476..97e4807 100644 (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;
 }