diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-29 15:02:03 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-29 15:02:03 +0000 |
commit | 3595eac3568b1002a2d93c68268f2de36a16dfa8 (patch) | |
tree | acbb1a11a9091dbc6f531848fe5ca8f2452c103d /gcc/expr.h | |
parent | 7375776c4420ed1ede7aaa91e2cc0113d694832a (diff) | |
download | gcc-3595eac3568b1002a2d93c68268f2de36a16dfa8.tar.gz |
* expr.h (insn_gen_function): Reenable prototype.
* expr.c (move_by_pieces_1, clear_by_pieces_1): Fix prototype of
first parameter.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14994 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index 624b965245a..fa7b7edd81c 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -315,7 +315,7 @@ typedef struct optab #define GEN_FCN(CODE) (*insn_gen_function[(int) (CODE)]) #endif -extern rtx (*const insn_gen_function[]) (); +extern rtx (*const insn_gen_function[]) PROTO ((rtx, ...)); extern optab add_optab; extern optab sub_optab; |