diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-26 18:31:55 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-04-26 18:31:55 +0000 |
commit | 1e034a40e32bc00033031960cf5757269d4b1908 (patch) | |
tree | c9e4454c9cb961ae70c865224f09030767b63ef4 /gcc/dwarf2out.h | |
parent | 0bcf33a2426a100408dabdb87dc3a1c8d04a7b12 (diff) | |
download | gcc-1e034a40e32bc00033031960cf5757269d4b1908.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33448 138bc75d-0d04-0410-961f-82ee72b054a4
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 *)); |