diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-14 00:46:57 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-14 00:46:57 +0000 |
commit | 83d2b3b9dc691168719b0c77bc5c9a4d10e6384b (patch) | |
tree | 777969cebe29c86ba06933f784b922ec19ce6063 /gcc/dwarfout.h | |
parent | 57bed15271e83402b6d8d6647f6589718e70916d (diff) | |
download | gcc-83d2b3b9dc691168719b0c77bc5c9a4d10e6384b.zip gcc-83d2b3b9dc691168719b0c77bc5c9a4d10e6384b.tar.gz gcc-83d2b3b9dc691168719b0c77bc5c9a4d10e6384b.tar.bz2 |
cccp.c: PROTO -> PARAMS.
* cccp.c: PROTO -> PARAMS.
* cexp.y: Likewise.
* collect2.c: Likewise.
* combine.c: Likewise.
* convert.h: Likewise.
* cse.c: Likewise.
* dbxout.c: Likewise.
* dbxout.h: Likewise.
* diagnostic.c: Likewise.
* doprint.c: Likewise.
* dwarf2out.c: Likewise.
* dwarf2out.h: Likewise.
* dwarfout.c: Likewise.
* dwarfout.h: Likewise.
* dyn-string.h: Likewise.
From-SVN: r31399
Diffstat (limited to 'gcc/dwarfout.h')
-rw-r--r-- | gcc/dwarfout.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/gcc/dwarfout.h b/gcc/dwarfout.h index f1c0dd2..c09469a 100644 --- a/gcc/dwarfout.h +++ b/gcc/dwarfout.h @@ -1,5 +1,5 @@ /* dwarfout.h - Various declarations for functions found in dwarfout.c - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of GNU CC. @@ -18,25 +18,25 @@ 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 dwarfout_init PROTO ((FILE *asm_out_file, +extern void dwarfout_init PARAMS ((FILE *asm_out_file, char *main_input_filename)); -extern void dwarfout_finish PROTO ((void)); +extern void dwarfout_finish PARAMS ((void)); -extern void dwarfout_define PROTO ((unsigned, const char *)); -extern void dwarfout_undef PROTO ((unsigned, const char *)); -extern void dwarfout_file_scope_decl PROTO ((tree , int)); -extern void dwarfout_start_new_source_file PROTO ((const char *)); -extern void dwarfout_resume_previous_source_file PROTO((unsigned)); +extern void dwarfout_define PARAMS ((unsigned, const char *)); +extern void dwarfout_undef PARAMS ((unsigned, const char *)); +extern void dwarfout_file_scope_decl PARAMS ((tree , int)); +extern void dwarfout_start_new_source_file PARAMS ((const char *)); +extern void dwarfout_resume_previous_source_file PARAMS ((unsigned)); -extern void dwarfout_begin_function PROTO ((void)); -extern void dwarfout_end_function PROTO ((void)); -extern void dwarfout_begin_epilogue PROTO ((void)); -extern void dwarfout_end_epilogue PROTO ((void)); -extern void dwarfout_begin_block PROTO ((unsigned)); -extern void dwarfout_end_block PROTO ((unsigned)); +extern void dwarfout_begin_function PARAMS ((void)); +extern void dwarfout_end_function PARAMS ((void)); +extern void dwarfout_begin_epilogue PARAMS ((void)); +extern void dwarfout_end_epilogue PARAMS ((void)); +extern void dwarfout_begin_block PARAMS ((unsigned)); +extern void dwarfout_end_block PARAMS ((unsigned)); #ifdef RTX_CODE -extern void dwarfout_label PROTO ((rtx)); +extern void dwarfout_label PARAMS ((rtx)); #endif -extern void dwarfout_line PROTO ((const char *, unsigned)); +extern void dwarfout_line PARAMS ((const char *, unsigned)); |