diff options
author | Richard Henderson <rth@redhat.com> | 2002-02-15 21:00:45 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2002-02-15 21:00:45 +0000 |
commit | 8f68883ed8badb2047407d13584ee4d8ba2fe679 (patch) | |
tree | ed1e5416c603ed6d73c8cec2c34401d0748aefda | |
parent | 0a920409cd0b8777db748298fdabd72bacaf2126 (diff) | |
download | gdb-8f68883ed8badb2047407d13584ee4d8ba2fe679.tar.gz |
* alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo
disassembly mask.
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/alpha-opc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index f3b48842dfa..d2a43cf183f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,10 @@ 2002-02-15 Richard Henderson <rth@redhat.com> + * alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo + disassembly mask. + +2002-02-15 Richard Henderson <rth@redhat.com> + * alpha-opc.c (alpha_opcodes): Add simple pseudos for lda, ldah, jmp, ret. 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 } }, |