Commit a17a5850 by Richard Henderson Committed by Richard Henderson

c-decl.c (c_expand_body): Use DECL_SOURCE_LINE rather than lineno for the start of the function.

        * c-decl.c (c_expand_body): Use DECL_SOURCE_LINE rather than
        lineno for the start of the function.

From-SVN: r37747
parent 2e18bbae
2000-11-25 Richard Henderson <rth@redhat.com>
* c-decl.c (c_expand_body): Use DECL_SOURCE_LINE rather than
lineno for the start of the function.
2000-11-25 Richard Henderson <rth@redhat.com>
* dwarf2out.c (file_table, file_table_allocated): Remove.
(file_table_allocated): Remove.
(struct file_table): New.
......
......@@ -6806,7 +6806,7 @@ c_expand_body (fndecl, nested_p)
/* Initialize the RTL code for the function. */
current_function_decl = fndecl;
init_function_start (fndecl, input_filename, lineno);
init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
/* This function is being processed in whole-function mode. */
cfun->x_whole_function_mode_p = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment