diff options
author | Jim Wilson <wilson@tuliptree.org> | 2001-02-22 03:16:21 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2001-02-22 03:16:21 +0000 |
commit | 87f8eb977e936160d4c332d88a8bce3db690521c (patch) | |
tree | 1fa8f38d53a0c82edb0d50d47e634702cc3a6b6c /gas/ChangeLog | |
parent | aacc1edd3ae439544e7e1e2e03ff456b723eae02 (diff) | |
download | gdb-87f8eb977e936160d4c332d88a8bce3db690521c.zip gdb-87f8eb977e936160d4c332d88a8bce3db690521c.tar.gz gdb-87f8eb977e936160d4c332d88a8bce3db690521c.tar.bz2 |
Improve gas error messages for invalid instructions.
* cpu-ia64-opc.c (elf64_ia64_operands}: Fix typo: error string for
C8 said "1" instead of "8". Clarify error string for IMM22:
"signed integer" instead of just "integer".
* config/tc-ia64.c (enum operand_match_result): New type.
(operand_match): Change return type to operand_match_result.
Fix all returns appropriately, adding support for returning the
out-of-range result.
(parse_operands): New locals result, error_pos, out_of_range_pos,
curr_out_of_range_pos. Rewrite operand matching loop to give better
error messages.
* ia64-opc-d.c (ia64_opcodes_d): Break the "add" pattern into two
separate variants: one for IMM22 and the other for IMM14.
* ia64-asmtab.c: Regenerate.
Diffstat (limited to 'gas/ChangeLog')
-rw-r--r-- | gas/ChangeLog | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index f18a868..401c38e 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,15 @@ 2001-02-21 David Mosberger <davidm@hpl.hp.com> + * config/tc-ia64.c (enum operand_match_result): New type. + (operand_match): Change return type to operand_match_result. + Fix all returns appropriately, adding support for returning the + out-of-range result. + (parse_operands): New locals result, error_pos, out_of_range_pos, + curr_out_of_range_pos. Rewrite operand matching loop to give better + error messages. + +2001-02-21 David Mosberger <davidm@hpl.hp.com> + * config/tc-ia64.c (struct unwind): Add member "prologue_count". (dot_proc): Clear unwind.prologue_count to zero. (dot_prologue): Increment unwind.prologue_count. |