diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-01-17 15:47:29 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-17 15:47:29 +0000 |
commit | cdadb1dda076203885b3a3845fe41a9a87a249ba (patch) | |
tree | 02d760faa2edcf054521c763f17de45357e930fc /gcc/resource.h | |
parent | 283a159fe38e477d93b189d43888f1e42043c0af (diff) | |
download | gcc-cdadb1dda076203885b3a3845fe41a9a87a249ba.zip gcc-cdadb1dda076203885b3a3845fe41a9a87a249ba.tar.gz gcc-cdadb1dda076203885b3a3845fe41a9a87a249ba.tar.bz2 |
reload.c: PROTO -> PARAMS.
* reload.c: PROTO -> PARAMS.
* reload.h: Likewise.
* reload1.c: Likewise.
* reorg.c: Likewise.
* resource.h: Likewise.
* rtl.c: Likewise.
* rtl.h: Likewise.
* rtlanal.c: Likewise.
* sbitmap.h: Likewise.
* sdbout.c: Likewise.
* stack.h: Likewise.
* stmt.c: Likewise.
* system.h: Likewise.
From-SVN: r31461
Diffstat (limited to 'gcc/resource.h')
-rw-r--r-- | gcc/resource.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/resource.h b/gcc/resource.h index ea7c4b2..5c11e4c 100644 --- a/gcc/resource.h +++ b/gcc/resource.h @@ -33,15 +33,15 @@ struct resources HARD_REG_SET regs; /* Which registers are set or needed. */ }; -extern void mark_target_live_regs PROTO((rtx, rtx, struct resources *)); -extern void mark_set_resources PROTO((rtx, struct resources *, int, +extern void mark_target_live_regs PARAMS ((rtx, rtx, struct resources *)); +extern void mark_set_resources PARAMS ((rtx, struct resources *, int, int)); -extern void mark_referenced_resources PROTO((rtx, struct resources *, int)); -extern void clear_hashed_info_for_insn PROTO((rtx)); -extern void incr_ticks_for_insn PROTO((rtx)); -extern void mark_end_of_function_resources PROTO ((rtx, int)); -extern void init_resource_info PROTO((rtx)); -extern void free_resource_info PROTO((void)); -extern rtx find_free_register PROTO((rtx, rtx, const char *, int, +extern void mark_referenced_resources PARAMS ((rtx, struct resources *, int)); +extern void clear_hashed_info_for_insn PARAMS ((rtx)); +extern void incr_ticks_for_insn PARAMS ((rtx)); +extern void mark_end_of_function_resources PARAMS ((rtx, int)); +extern void init_resource_info PARAMS ((rtx)); +extern void free_resource_info PARAMS ((void)); +extern rtx find_free_register PARAMS ((rtx, rtx, const char *, int, HARD_REG_SET *)); -extern int reg_dead_p PROTO((rtx, rtx)); +extern int reg_dead_p PARAMS ((rtx, rtx)); |