From 0f0377f6dde05e7bc08025824b24ce8917cbcee7 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 1 Oct 2004 17:11:25 +0200 Subject: c-decl.c (c_expand_body): Update call tree_rest_of_compilation. * 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. From-SVN: r88396 --- gcc/ada/ChangeLog | 4 ++++ gcc/ada/misc.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'gcc/ada') diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 3b04259..c03adf8 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2004-10-01 Jan Hubicka + + * misc.c (gnat_expand_body): Update call of tree_rest_of_compilation. + 2004-09-23 Robert Dewar PR ada/17540 diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c index d1631cd..f74626a 100644 --- a/gcc/ada/misc.c +++ b/gcc/ada/misc.c @@ -649,7 +649,7 @@ gnat_expand_body (tree gnu_decl) if (!DECL_INITIAL (gnu_decl) || DECL_INITIAL (gnu_decl) == error_mark_node) return; - tree_rest_of_compilation (gnu_decl, false); + tree_rest_of_compilation (gnu_decl); } /* Adjusts the RLI used to layout a record after all the fields have been -- cgit v1.1