diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-01 08:16:47 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-01 08:16:47 +0000 |
commit | cf85f8357f4f331a8cc0c33c7482a00d658244cf (patch) | |
tree | 00a468eaf00b3f8137d8112cf7254fe104b988c2 /gcc/recog.h | |
parent | 22add764ced7691b99368a28c7b194cd0b2e13e2 (diff) | |
download | gcc-cf85f8357f4f331a8cc0c33c7482a00d658244cf.tar.gz |
gcc/
* recog.h (insn_data_d): Add n_generator_args.
* genoutput.c (data): Likewise.
(output_insn_data): Print it.
(max_opno, num_dups): Delete.
(scan_operands): Just fill in "d->operand[...]".
(gen_insn, gen_peephole, gen_expand, gen_split): Use get_pattern_stats.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171822 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.h')
-rw-r--r-- | gcc/recog.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/recog.h b/gcc/recog.h index 534d2c99b18..0261bc6072d 100644 --- a/gcc/recog.h +++ b/gcc/recog.h @@ -300,6 +300,7 @@ struct insn_data_d const insn_gen_fn genfun; const struct insn_operand_data *const operand; + const char n_generator_args; const char n_operands; const char n_dups; const char n_alternatives; |