diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-12 20:16:29 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-08-12 20:16:29 +0000 |
commit | fc7bc88384beca1d62919c19120cc0e70c0d1e4e (patch) | |
tree | 2b4a692ea199f3df001384947d93ed529700d5c7 /opcodes/fr30-opc.c | |
parent | d8b6305a45989e1260db502c8fd13fba53d44c45 (diff) | |
download | gdb-fc7bc88384beca1d62919c19120cc0e70c0d1e4e.zip gdb-fc7bc88384beca1d62919c19120cc0e70c0d1e4e.tar.gz gdb-fc7bc88384beca1d62919c19120cc0e70c0d1e4e.tar.bz2 |
* cgen-ibld.in (extract_normal): Match type of VALUE and MASK
to *VALUEP. Regenerate all cgen files.
Diffstat (limited to 'opcodes/fr30-opc.c')
-rw-r--r-- | opcodes/fr30-opc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/fr30-opc.c b/opcodes/fr30-opc.c index 4d0ab6a..877f26b 100644 --- a/opcodes/fr30-opc.c +++ b/opcodes/fr30-opc.c @@ -1368,6 +1368,7 @@ fr30_cgen_init_opcode_table (cd) { insns[i].base = &ib[i]; insns[i].opcode = &oc[i]; + fr30_cgen_build_insn_regex (& insns[i]); } cd->macro_insn_table.init_entries = insns; cd->macro_insn_table.entry_size = sizeof (CGEN_IBASE); @@ -1376,7 +1377,10 @@ fr30_cgen_init_opcode_table (cd) oc = & fr30_cgen_insn_opcode_table[0]; insns = (CGEN_INSN *) cd->insn_table.init_entries; for (i = 0; i < MAX_INSNS; ++i) - insns[i].opcode = &oc[i]; + { + insns[i].opcode = &oc[i]; + fr30_cgen_build_insn_regex (& insns[i]); + } cd->sizeof_fields = sizeof (CGEN_FIELDS); cd->set_fields_bitsize = set_fields_bitsize; |