diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-04-26 18:31:55 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-04-26 18:31:55 +0000 |
commit | d3e3972c5c370807f5e14cb35019eb5700a9158a (patch) | |
tree | c9e4454c9cb961ae70c865224f09030767b63ef4 /gcc/dwarf2out.h | |
parent | 09acb3e19dcf5a220586cf2f160a21a3f1ebe63f (diff) | |
download | gcc-d3e3972c5c370807f5e14cb35019eb5700a9158a.tar.gz |
dwarf2out.c (dw_cfi_oprnd_struct, [...]): Constify a char*.
* dwarf2out.c (dw_cfi_oprnd_struct, dw_fde_struct, add_fde_cfi,
reg_save, dwarf2out_frame_debug_expr, dwarf2out_def_cfa,
dwarf2out_window_save, dwarf2out_args_size, dwarf2out_reg_save,
dwarf2out_return_save, dwarf2out_return_reg,
dwarf2out_stack_adjust, dwarf2out_frame_debug, primary_filename,
add_AT_lbl_id, add_AT_lbl_offset, type_tag, decl_start_label,
gen_compile_unit_die, dwarf2out_init): Constify a char*.
* dwarf2out.h (dwarf2out_init): Likewise.
* dwarfout.c (filename_entry, primary_filename, last_filename,
type_tag, output_compile_unit_die, dwarfout_init): Likewise.
* tree.h (dwarf2out_def_cfa, dwarf2out_window_save,
dwarf2out_args_size, dwarf2out_reg_save, dwarf2out_return_save,
dwarf2out_return_reg): Likewise.
From-SVN: r33448
Diffstat (limited to 'gcc/dwarf2out.h')
-rw-r--r-- | gcc/dwarf2out.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/dwarf2out.h b/gcc/dwarf2out.h index 4b975b61eda..7496f9dcdf2 100644 --- a/gcc/dwarf2out.h +++ b/gcc/dwarf2out.h @@ -18,8 +18,7 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -extern void dwarf2out_init PARAMS ((FILE *asm_out_file, - char *main_input_filename)); +extern void dwarf2out_init PARAMS ((FILE *, const char *)); extern void dwarf2out_finish PARAMS ((void)); extern void dwarf2out_define PARAMS ((unsigned, const char *)); |