* cgraphunit.c (cgraph_finalize_function): Remove unused argument.
* cgraph.h (cgraph_finalize_function): Update.
* c-decl.c (finish_function): Update.
cp/
* semantics.c (expand_or_defer_fn): Update call to
cgraph_finalize_function.
java/
* parse.y (source_end_java_method): Update call to
cgraph_finalize_function.
From-SVN: r71263
+2003-09-09 Richard Henderson <rth@redhat.com>
+
+ * cgraphunit.c (cgraph_finalize_function): Remove unused argument.
+ * cgraph.h (cgraph_finalize_function): Update.
+ * c-decl.c (finish_function): Update.
2003-09-09 Devang Patel <dpatel@apple.com>
/* ??? Objc emits functions after finalizing the compilation unit.
This should be cleaned up later and this conditional removed. */
if (!cgraph_global_info_ready)
- cgraph_finalize_function (fndecl, DECL_SAVED_TREE (fndecl));
+ cgraph_finalize_function (fndecl);
else
c_expand_body (fndecl);
current_function_decl = NULL;
bool cgraph_varpool_assemble_pending_decls (void);
/* In cgraphunit.c */
-void cgraph_finalize_function (tree, tree);
+void cgraph_finalize_function (tree);
void cgraph_finalize_compilation_unit (void);
void cgraph_create_edges (tree, tree);
void cgraph_optimize (void);
available - create cgraph edges for function calls via BODY. */
void
-cgraph_finalize_function (tree decl, tree body ATTRIBUTE_UNUSED)
+cgraph_finalize_function (tree decl)
{
struct cgraph_node *node = cgraph_node (decl);
2003-09-09 Richard Henderson <rth@redhat.com>
+ * semantics.c (expand_or_defer_fn): Update call to
+ cgraph_finalize_function.
+
* semantics.c (expand_or_defer_fn): Use cgraph_finalize_function
always.
import_export_decl (fn);
/* Expand or defer, at the whim of the compilation unit manager. */
- cgraph_finalize_function (fn, DECL_SAVED_TREE (fn));
+ cgraph_finalize_function (fn);
}
/* Helper function for walk_tree, used by finish_function to override all
+2003-09-09 Richard Henderson <rth@redhat.com>
+
+ * parse.y (source_end_java_method): Update call to
+ cgraph_finalize_function.
+
2003-09-03 Jeff Sturm <jsturm@one-point.com>
* decl.c (java_expand_body): New function.
/* In unit-at-a-time mode, don't expand the method yet. */
if (DECL_SAVED_TREE (fndecl) && flag_unit_at_a_time)
{
- cgraph_finalize_function (fndecl, DECL_SAVED_TREE (fndecl));
+ cgraph_finalize_function (fndecl);
current_function_decl = NULL_TREE;
java_parser_context_restore_global ();
return;