diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-28 17:33:22 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-28 17:33:22 +0000 |
commit | 1f5a3169b4f195e6470c8abae1053295c6b3f26a (patch) | |
tree | 71626eb048f5e031e0a8fc0320bdec9e9a929178 /gcc/recog.h | |
parent | b16a1b98b1fc95ba60d6beb1718714be3b0c81c8 (diff) | |
download | gcc-1f5a3169b4f195e6470c8abae1053295c6b3f26a.tar.gz |
Warning fixes:
* recog.h (insn_outfun, insn_operand_predicate): Add prototype
arguments.
* rtl.h (note_stores): Likewise.
* rtlanal.c (note_stores): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26045 138bc75d-0d04-0410-961f-82ee72b054a4
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[]; |