From 6b00c969c4be4455d900fd7f2d802bb68f45598c Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Thu, 11 Sep 2003 00:14:12 -0700 Subject: cgraphunit.c (cgraph_finalize_function): Add nested arg. * cgraphunit.c (cgraph_finalize_function): Add nested arg. Tweek tests for function already generated. (cgraph_expand_function): Don't double announce in !unit-at-a-time. * cgraph.h (cgraph_finalize_function): Update for extra arg. * c-decl.c (finish_function): Likewise. * semantics.c (expand_or_defer_fn): Update for new cgraph_finalize_function argument. * parse.y (source_end_java_method): Update for new cgraph_finalize_function argument. From-SVN: r71298 --- gcc/java/parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/java/parse.y') diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 2a6abf5..a5064e1 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -7474,7 +7474,7 @@ source_end_java_method (void) /* 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); + cgraph_finalize_function (fndecl, false); current_function_decl = NULL_TREE; java_parser_context_restore_global (); return; -- cgit v1.1