diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-14 17:14:43 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-14 17:14:43 +0000 |
commit | 711d877c9e4f9b3250bc50e54c672b40840d574a (patch) | |
tree | c581c8d237ef2fffdfeee6182fd81e25ea6ed527 /gcc/final.c | |
parent | 318881c06efdf1bc4039f1bba7eab820d69735a2 (diff) | |
download | gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.zip gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.tar.gz gcc-711d877c9e4f9b3250bc50e54c672b40840d574a.tar.bz2 |
eh-common.h: PROTO -> PARAMS.
* eh-common.h: PROTO -> PARAMS.
* emit-rtl.c: Likewise.
* errors.c: Likewise.
* errors.h: Likewise.
* except.c: Likewise.
* except.h: Likewise.
* explow.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* final.c: Likewise.
* fix-header.c: Likewise.
* flow.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* function.h: Likewise.
* gcc.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* gcse.c: Likewise.
From-SVN: r31419
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/final.c b/gcc/final.c index 32039af..f94a02f 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -290,27 +290,27 @@ static struct bb_str **sbb_tail = &sbb_head; /* Ptr to store next bb str */ static int sbb_label_num = 0; /* Last label used */ #ifdef HAVE_ATTR_length -static int asm_insn_count PROTO((rtx)); -#endif -static void profile_function PROTO((FILE *)); -static void profile_after_prologue PROTO((FILE *)); -static void add_bb PROTO((FILE *)); -static int add_bb_string PROTO((const char *, int)); -static void output_source_line PROTO((FILE *, rtx)); -static rtx walk_alter_subreg PROTO((rtx)); -static void output_asm_name PROTO((void)); -static void output_operand PROTO((rtx, int)); +static int asm_insn_count PARAMS ((rtx)); +#endif +static void profile_function PARAMS ((FILE *)); +static void profile_after_prologue PARAMS ((FILE *)); +static void add_bb PARAMS ((FILE *)); +static int add_bb_string PARAMS ((const char *, int)); +static void output_source_line PARAMS ((FILE *, rtx)); +static rtx walk_alter_subreg PARAMS ((rtx)); +static void output_asm_name PARAMS ((void)); +static void output_operand PARAMS ((rtx, int)); #ifdef LEAF_REGISTERS -static void leaf_renumber_regs PROTO((rtx)); +static void leaf_renumber_regs PARAMS ((rtx)); #endif #ifdef HAVE_cc0 -static int alter_cond PROTO((rtx)); +static int alter_cond PARAMS ((rtx)); #endif #ifndef ADDR_VEC_ALIGN -static int final_addr_vec_align PROTO ((rtx)); +static int final_addr_vec_align PARAMS ((rtx)); #endif #ifdef HAVE_ATTR_length -static int align_fuzz PROTO ((rtx, rtx, int, unsigned)); +static int align_fuzz PARAMS ((rtx, rtx, int, unsigned)); #endif /* Initialize data in final at the beginning of a compilation. */ @@ -3726,7 +3726,7 @@ output_addr_const (file, x) We handle alternate assembler dialects here, just like output_asm_insn. */ void -asm_fprintf VPROTO((FILE *file, const char *p, ...)) +asm_fprintf VPARAMS ((FILE *file, const char *p, ...)) { #ifndef ANSI_PROTOTYPES FILE *file; |