From 1f9cc6db1b6ea3576abbdf5467abfd3a6ff8e520 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Fri, 20 Jun 2003 09:08:23 +0000 Subject: tree.h (expand_function_end): Remove all parameters. * tree.h (expand_function_end): Remove all parameters. * function.c (expand_function_end): Remove all parameters. Use input_location. Never expand_end_bindings. * c-decl.c (c_expand_body_1): Adjust expand_function_end call. * coverage.c (create_coverage): Likewise. * ada/utils.c (end_subprog_body): Adjust expand_function_end call. * cp/semantics.c (genrtl_finish_function): Adjust expand_function_end call. * f/com.c (finish_function): Adjust expand_function_end call. * java/class.c (push_class): Use a location_t to save place. (emit_register_classes): Set input_location. Adjust expand_function_end call. * java/resource.c (write_resource_constructor): Likewise. * java/decl.c (end_java_method): Adjust expand_function_end call. * java/parse.y (source_end_java_method): Likewise. * treelang/treetree.c (tree_code_create_function_wrapup): Adjust expand_function_end call. From-SVN: r68255 --- 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 854fd5f..a156be1 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -7386,7 +7386,7 @@ source_end_java_method (void) if (! flag_emit_class_files && ! flag_emit_xref) { input_line = DECL_FUNCTION_LAST_LINE (fndecl); - expand_function_end (input_filename, input_line, 0); + expand_function_end (); /* Run the optimizers and output assembler code for this function. */ rest_of_compilation (fndecl); -- cgit v1.1