From: Richard Henderson Date: Fri, 15 Feb 2002 21:00:45 +0000 (+0000) Subject: * alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8bf7d691eb8662b118fa709a530e64ac9e17e85d;p=binutils-gdb.git * alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo disassembly mask. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index f3b48842dfa..d2a43cf183f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2002-02-15 Richard Henderson + + * alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo + disassembly mask. + 2002-02-15 Richard Henderson * alpha-opc.c (alpha_opcodes): Add simple pseudos for diff --git a/opcodes/alpha-opc.c b/opcodes/alpha-opc.c index 3f45f6c5ead..6cf7d4cefcc 100644 --- a/opcodes/alpha-opc.c +++ b/opcodes/alpha-opc.c @@ -1125,7 +1125,7 @@ const struct alpha_opcode alpha_opcodes[] = { { "jmp", MBR(0x1A,0), BASE, { RA, CPRB, JMPHINT } }, { "jsr", MBR(0x1A,1), BASE, { RA, CPRB, JMPHINT } }, { "ret", MBR_(0x1A,2) | (31 << 21) | (26 << 16) | 1,/* pseudo */ - MBR_MASK, BASE, { 0 } }, + 0xFFFFFFFF, BASE, { 0 } }, { "ret", MBR(0x1A,2), BASE, { RA, CPRB, RETHINT } }, { "jcr", MBR(0x1A,3), BASE, { RA, CPRB, RETHINT } }, /* alias */ { "jsr_coroutine", MBR(0x1A,3), BASE, { RA, CPRB, RETHINT } },