diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2003-06-10 07:27:56 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2003-06-10 07:27:56 +0000 |
commit | 0613284fd49388e6d5938e76e471362485c6c93e (patch) | |
tree | 701fe75ed8d9bad2d580b3ca9eff768f97a5ffa8 /opcodes | |
parent | 28d7dee9f8d1335bac2a2c51ea152d4d3db46823 (diff) | |
download | fsf-binutils-gdb-0613284fd49388e6d5938e76e471362485c6c93e.zip fsf-binutils-gdb-0613284fd49388e6d5938e76e471362485c6c93e.tar.gz fsf-binutils-gdb-0613284fd49388e6d5938e76e471362485c6c93e.tar.bz2 |
opcodes/
* h8300-dis.c (bfd_h8_disassemble): Don't print brackets round
rts/l and rte/l register lists.
gas/
* config/tc-h8300.c (get_rtsl_operands): Accept unbracketed register
lists. Allow single-register ranges.
testsuite/
* gas/h8300/h8sx_rtsl.[sd]: New test.
* gas/h8300/h8300.exp: Run it.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/h8300-dis.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 8200278..afe48fd 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2003-06-10 Richard Sandiford <rsandifo@redhat.com> + + * h8300-dis.c (bfd_h8_disassemble): Don't print brackets round + rts/l and rte/l register lists. + 2003-06-03 Nick Clifton <nickc@redhat.com> * frv-desc.c: Regenerate. diff --git a/opcodes/h8300-dis.c b/opcodes/h8300-dis.c index 299267f..ea8d30b 100644 --- a/opcodes/h8300-dis.c +++ b/opcodes/h8300-dis.c @@ -698,7 +698,7 @@ bfd_h8_disassemble (addr, info, mach) outfn (stream, "er%d", regno[1]); else { - outfn (stream, "(er%d-er%d)", regno[1] - regno[0], + outfn (stream, "er%d-er%d", regno[1] - regno[0], regno[1]); } return qi->length; |