diff options
author | Richard Sandiford <richard.sandiford@linaro.org> | 2011-04-01 08:16:47 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2011-04-01 08:16:47 +0000 |
commit | b29387eec60251cbfed25475892d5645c9c59caf (patch) | |
tree | 00a468eaf00b3f8137d8112cf7254fe104b988c2 /gcc/recog.h | |
parent | e792559ab3d6fdb933e91bb0a317554d5920d58a (diff) | |
download | gcc-b29387eec60251cbfed25475892d5645c9c59caf.zip gcc-b29387eec60251cbfed25475892d5645c9c59caf.tar.gz gcc-b29387eec60251cbfed25475892d5645c9c59caf.tar.bz2 |
recog.h (insn_data_d): Add n_generator_args.
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.
From-SVN: r171822
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 534d2c9..0261bc6 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; |