aboutsummaryrefslogtreecommitdiff
path: root/gcc/recog.h
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/recog.h
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/recog.h')
-rw-r--r--gcc/recog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/recog.h b/gcc/recog.h
index 79f22f9..c8a6598 100644
--- a/gcc/recog.h
+++ b/gcc/recog.h
@@ -178,7 +178,7 @@ extern struct operand_alternative recog_op_alt[MAX_RECOG_OPERANDS][MAX_RECOG_ALT
extern const char *const insn_template[];
-extern const char *(*const insn_outfun[]) ();
+extern const char *(*const insn_outfun[]) PROTO ((rtx *, rtx));
extern const int insn_n_operands[];
@@ -203,6 +203,6 @@ extern const enum machine_mode insn_operand_mode[][MAX_RECOG_OPERANDS];
extern const char insn_operand_strict_low[][MAX_RECOG_OPERANDS];
-extern int (*const insn_operand_predicate[][MAX_RECOG_OPERANDS]) ();
+extern int (*const insn_operand_predicate[][MAX_RECOG_OPERANDS]) PROTO ((rtx, enum machine_mode));
extern const char * insn_name[];