diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-03-28 17:33:22 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-03-28 17:33:22 +0000 |
commit | 3228bc05fc4414db84bd0a81099d22ff1bd4a4e9 (patch) | |
tree | 71626eb048f5e031e0a8fc0320bdec9e9a929178 /gcc/rtl.h | |
parent | 8f0e7be43cb851bdf09269f726e182778851010b (diff) | |
download | gcc-3228bc05fc4414db84bd0a81099d22ff1bd4a4e9.zip gcc-3228bc05fc4414db84bd0a81099d22ff1bd4a4e9.tar.gz gcc-3228bc05fc4414db84bd0a81099d22ff1bd4a4e9.tar.bz2 |
Warning fixes:
* recog.h (insn_outfun, insn_operand_predicate): Add prototype
arguments.
* rtl.h (note_stores): Likewise.
* rtlanal.c (note_stores): Likewise.
From-SVN: r26045
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1022,7 +1022,7 @@ extern int multiple_sets PROTO((rtx)); extern rtx find_last_value PROTO((rtx, rtx *, rtx, int)); extern int refers_to_regno_p PROTO((int, int, rtx, rtx *)); extern int reg_overlap_mentioned_p PROTO((rtx, rtx)); -extern void note_stores PROTO((rtx, void (*)())); +extern void note_stores PROTO((rtx, void (*)(rtx, rtx))); extern rtx reg_set_last PROTO((rtx, rtx)); extern int rtx_equal_p PROTO((rtx, rtx)); extern int dead_or_set_p PROTO((rtx, rtx)); |