From: Miod Vallat Date: Tue, 10 Sep 2019 16:17:01 +0000 (+0100) Subject: Use the correct alias for the M68K tdiv instruction. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=8063ab7e37c1a2abfa272d10e8d2c7ae192b1787;p=deliverable%2Fbinutils-gdb.git Use the correct alias for the M68K tdiv instruction. PR 24982 * m68k-opc.c: Correct aliases for tdivsl and tdivul. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 67bc754be5..392fcacfb6 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2019-09-10 Miod Vallat + + PR 24982 + * m68k-opc.c: Correct aliases for tdivsl and tdivul. + 2019-09-09 Phil Blundell binutils 2.33 branch created. diff --git a/opcodes/m68k-opc.c b/opcodes/m68k-opc.c index d99bf90fca..c93c675981 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", },