From 3228bc05fc4414db84bd0a81099d22ff1bd4a4e9 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Sun, 28 Mar 1999 17:33:22 +0000 Subject: 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 --- gcc/recog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/recog.h') diff --git a/gcc/recog.h b/gcc/recog.h index 79f22f9135a..c8a6598cb4a 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[]; -- cgit v1.2.1