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/recog.h | |
parent | 8f0e7be43cb851bdf09269f726e182778851010b (diff) | |
download | gcc-3228bc05fc4414db84bd0a81099d22ff1bd4a4e9.tar.gz |
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
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[]; |