From 014d421e52d46e7a7e276199c9d883abed51569b Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 20 Jun 2003 09:08:23 +0000 Subject: * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68255 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/coverage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/coverage.c') diff --git a/gcc/coverage.c b/gcc/coverage.c index 49cf14a2689..18614b38caa 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -866,7 +866,7 @@ create_coverage () emit_library_call (gcov_init_libfunc, LCT_NORMAL, VOIDmode, 1, gcov_info_address, Pmode); - expand_function_end (input_filename, input_line, 0); + expand_function_end (); (*lang_hooks.decls.poplevel) (1, 0, 1); rest_of_compilation (ctor); -- cgit v1.2.1