diff options
author | Richard Henderson <rth@redhat.com> | 2003-09-09 20:06:32 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2003-09-09 20:06:32 -0700 |
commit | 39adabaf32813faa9cfbfbd6cfe306200404ee68 (patch) | |
tree | 39534798821d656148edbe24f4762c6b7a842d2b /gcc/cp/semantics.c | |
parent | 288a242be4fc5161e02cc9b1ed98f6423e285302 (diff) | |
download | gcc-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/cp/semantics.c')
-rw-r--r-- | gcc/cp/semantics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index b5d76ce..50923ab 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -2940,7 +2940,7 @@ expand_or_defer_fn (tree fn) 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 |