diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2003-05-01 13:45:37 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2003-05-01 13:45:37 +0000 |
commit | 3b895f8ed663edc2bfab43aec24e3e8ac3cf2c9f (patch) | |
tree | 72a98b199af23e0688dd74a4e10728bf0f6ecc18 /gcc/dwarf2out.c | |
parent | d12a72831c26c83dd1d2e74418fd57e43aef41cf (diff) | |
download | gcc-3b895f8ed663edc2bfab43aec24e3e8ac3cf2c9f.zip gcc-3b895f8ed663edc2bfab43aec24e3e8ac3cf2c9f.tar.gz gcc-3b895f8ed663edc2bfab43aec24e3e8ac3cf2c9f.tar.bz2 |
dwarf2out.c (dwarf2out_init, [...]): Change parameter name from input_filename.
* dwarf2out.c (dwarf2out_init, dwarf2out_finish): Change parameter
name from input_filename.
f:
* ste.c (struct gbe_block): Rename field from input_filename.
(ffeste_start_block_, ffeste_start_stmt_): Likewise.
From-SVN: r66326
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 4a7b825..6338f99 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -12761,8 +12761,8 @@ dwarf2out_undef (lineno, buffer) /* Set up for Dwarf output at the start of compilation. */ static void -dwarf2out_init (input_filename) - const char *input_filename ATTRIBUTE_UNUSED; +dwarf2out_init (filename) + const char *filename ATTRIBUTE_UNUSED; { init_file_table (); @@ -13068,16 +13068,16 @@ prune_unused_types () and generate the DWARF-2 debugging info. */ static void -dwarf2out_finish (input_filename) - const char *input_filename; +dwarf2out_finish (filename) + const char *filename; { limbo_die_node *node, *next_node; dw_die_ref die = 0; /* Add the name for the main input file now. We delayed this from dwarf2out_init to avoid complications with PCH. */ - add_name_attribute (comp_unit_die, input_filename); - if (input_filename[0] != DIR_SEPARATOR) + add_name_attribute (comp_unit_die, filename); + if (filename[0] != DIR_SEPARATOR) add_comp_dir_attribute (comp_unit_die); else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL) { |