diff options
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/java/parse.y | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 68841af..337c2b1 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2003-09-11 Richard Henderson <rth@redhat.com> + + * parse.y (source_end_java_method): Update for new + cgraph_finalize_function argument. + 2003-09-09 Richard Henderson <rth@redhat.com> * parse.y (source_end_java_method): Update call to 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; |