diff options
author | Patrick Macdonald <patrickm@redhat.com> | 2001-02-02 23:04:40 +0000 |
---|---|---|
committer | Patrick Macdonald <patrickm@redhat.com> | 2001-02-02 23:04:40 +0000 |
commit | 0715dc88cff4cef94ee37361d8ebbf8f9c831d0a (patch) | |
tree | 1e39fb825b514da708e1a30c0875bc1853128f09 /opcodes | |
parent | 86ddecc5fc79ab583b0310407108301d26e567b8 (diff) | |
download | gdb-0715dc88cff4cef94ee37361d8ebbf8f9c831d0a.zip gdb-0715dc88cff4cef94ee37361d8ebbf8f9c831d0a.tar.gz gdb-0715dc88cff4cef94ee37361d8ebbf8f9c831d0a.tar.bz2 |
Binutils portion of fix for syntax array elements when max
operands is greater than 127.
2001-02-02 Patrick Macdonald <patrickm@redhat.com>
* cgen.h (CGEN_SYNTAX_CHAR_TYPE): Typedef as unsigned short.
(CGEN_MAX_SYNTAX_ELEMENTS): Rename from CGEN_MAX_SYNTAX_BYTES.
(CGEN_SYNTAX): Define using CGEN_MAX_SYNTAX_ELEMENTS.
* fr30-desc.h: Regenerate with CGEN_MAX_SYNTAX_ELEMENTS.
* m32r-desc.h: Regenerate.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/fr30-desc.h | 2 | ||||
-rw-r--r-- | opcodes/m32r-desc.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index acd6ca5..fd72ae5 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2001-02-02 Patrick Macdonald <patrickm@redhat.com> + + * fr30-desc.h: Regenerate with CGEN_MAX_SYNTAX_ELEMENTS. + * m32r-desc.h: Regenerate. + Thu Feb 1 16:29:06 MET 2001 Jan Hubicka <jh@suse.cz> * (dis386_att, grps): Use 'T' for push/pop diff --git a/opcodes/fr30-desc.h b/opcodes/fr30-desc.h index 446fc7d..27b4db5 100644 --- a/opcodes/fr30-desc.h +++ b/opcodes/fr30-desc.h @@ -44,7 +44,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define CGEN_INT_INSN_P 0 /* Maximum nymber of syntax bytes in an instruction. */ -#define CGEN_ACTUAL_MAX_SYNTAX_BYTES 15 +#define CGEN_ACTUAL_MAX_SYNTAX_ELEMENTS 15 /* CGEN_MNEMONIC_OPERANDS is defined if mnemonics have operands. e.g. In "b,a foo" the ",a" is an operand. If mnemonics have operands diff --git a/opcodes/m32r-desc.h b/opcodes/m32r-desc.h index 774891d..9fe57ab 100644 --- a/opcodes/m32r-desc.h +++ b/opcodes/m32r-desc.h @@ -45,7 +45,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define CGEN_INT_INSN_P 1 /* Maximum nymber of syntax bytes in an instruction. */ -#define CGEN_ACTUAL_MAX_SYNTAX_BYTES 15 +#define CGEN_ACTUAL_MAX_SYNTAX_ELEMENTS 15 /* CGEN_MNEMONIC_OPERANDS is defined if mnemonics have operands. e.g. In "b,a foo" the ",a" is an operand. If mnemonics have operands |