aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-decl.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2003-09-09 20:06:32 -0700
committerRichard Henderson <rth@gcc.gnu.org>2003-09-09 20:06:32 -0700
commit39adabaf32813faa9cfbfbd6cfe306200404ee68 (patch)
tree39534798821d656148edbe24f4762c6b7a842d2b /gcc/c-decl.c
parent288a242be4fc5161e02cc9b1ed98f6423e285302 (diff)
downloadgcc-39adabaf32813faa9cfbfbd6cfe306200404ee68.zip
gcc-39adabaf32813faa9cfbfbd6cfe306200404ee68.tar.gz
gcc-39adabaf32813faa9cfbfbd6cfe306200404ee68.tar.bz2
cgraphunit.c (cgraph_finalize_function): Remove unused argument.
* 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
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r--gcc/c-decl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 6afcd7a..b72f257 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -6143,7 +6143,7 @@ finish_function ()
/* ??? 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;