aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtlanal.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1999-03-28 17:33:22 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1999-03-28 17:33:22 +0000
commit3228bc05fc4414db84bd0a81099d22ff1bd4a4e9 (patch)
tree71626eb048f5e031e0a8fc0320bdec9e9a929178 /gcc/rtlanal.c
parent8f0e7be43cb851bdf09269f726e182778851010b (diff)
downloadgcc-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/rtlanal.c')
-rw-r--r--gcc/rtlanal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c
index 8347849..d39071b 100644
--- a/gcc/rtlanal.c
+++ b/gcc/rtlanal.c
@@ -1180,7 +1180,7 @@ rtx_equal_p (x, y)
void
note_stores (x, fun)
register rtx x;
- void (*fun) ();
+ void (*fun) PROTO ((rtx, rtx));
{
if ((GET_CODE (x) == SET || GET_CODE (x) == CLOBBER))
{