diff options
author | Miod Vallat <miod@online.fr> | 2019-09-10 17:17:01 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2019-09-10 17:17:01 +0100 |
commit | 8063ab7e37c1a2abfa272d10e8d2c7ae192b1787 (patch) | |
tree | 393ec963bcb4a27b2f85b32d6c8ce5b5e710a6ad /opcodes | |
parent | 2d60161648d021aca8e3343ead7be24d627c479b (diff) | |
download | gdb-8063ab7e37c1a2abfa272d10e8d2c7ae192b1787.zip gdb-8063ab7e37c1a2abfa272d10e8d2c7ae192b1787.tar.gz gdb-8063ab7e37c1a2abfa272d10e8d2c7ae192b1787.tar.bz2 |
Use the correct alias for the M68K tdiv instruction.
PR 24982
* m68k-opc.c: Correct aliases for tdivsl and tdivul.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/m68k-opc.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 67bc754..392fcac 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2019-09-10 Miod Vallat <miod@online.fr> + + PR 24982 + * m68k-opc.c: Correct aliases for tdivsl and tdivul. + 2019-09-09 Phil Blundell <pb@pbcl.net> binutils 2.33 branch created. diff --git a/opcodes/m68k-opc.c b/opcodes/m68k-opc.c index d99bf90..c93c675 100644 --- a/opcodes/m68k-opc.c +++ b/opcodes/m68k-opc.c @@ -2325,7 +2325,7 @@ const struct m68k_opcode_alias m68k_opcode_aliases[] = { "dbhsw", "dbcc", }, { "dbra", "dbf", }, { "dbraw", "dbf", }, - { "tdivsl", "divsl", }, + { "tdivsl", "divsll", }, { "divs", "divsw", }, { "divu", "divuw", }, { "ext", "extw", }, @@ -2435,7 +2435,7 @@ const struct m68k_opcode_alias m68k_opcode_aliases[] = { "movsw", "movesw", }, { "mov3q", "mov3ql", }, - { "tdivul", "divul", }, /* For m68k-svr4. */ + { "tdivul", "divull", }, /* For m68k-svr4. */ { "fmovb", "fmoveb", }, { "fsmovb", "fsmoveb", }, { "fdmovb", "fdmoveb", }, |