diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-01 15:11:25 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-01 15:11:25 +0000 |
commit | 6148a91129d8c09084afbdcef315300f99bad724 (patch) | |
tree | c9a038f7da5c95456d000d806d0b660f3ff619dd /gcc/java/decl.c | |
parent | f5b280d8dd04d3499456fd110aa88b96b1ab096d (diff) | |
download | gcc-6148a91129d8c09084afbdcef315300f99bad724.tar.gz |
* c-decl.c (c_expand_body): Update call tree_rest_of_compilation.
* cgraphunit.c (cgraph_build_static_cdtor): Likewise.
* toplev.h (tree_rest_of_compilation): Update prototype.
* tree-optimize.c (tree_rest_of_compilation): Kill nested_p argument.
* misc.c (gnat_expand_body): Update call of tree_rest_of_compilation.
* semantics.c (expand_body): Update call of tree_rest_of_compilation.
* f95-lang.c (gfc_expand_function): Update call of
tree_rest_of_compilation.
* trans-decl.c (gfc_generate_constructors): Likewise.
* java.c (java_expand_body): Update call of tree_rest_of_compilation.
* treetree.c (treeland_expand_function): Update call of
tree_rest_of_compilation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88396 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/decl.c')
-rw-r--r-- | gcc/java/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/decl.c b/gcc/java/decl.c index e10c9914869..b0a25dc97b9 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -1970,7 +1970,7 @@ finish_method (tree fndecl) void java_expand_body (tree fndecl) { - tree_rest_of_compilation (fndecl, 0); + tree_rest_of_compilation (fndecl); } /* We pessimistically marked all methods and fields external until we |