aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-02-15 21:00:45 +0000
committerRichard Henderson <rth@redhat.com>2002-02-15 21:00:45 +0000
commit8bf7d691eb8662b118fa709a530e64ac9e17e85d (patch)
tree971144cbf60fd60e0fe57705fb42b8856df3b853 /opcodes
parent8656e7d8b60638df4e5e449fe51647533f4a3ef6 (diff)
downloadgdb-8bf7d691eb8662b118fa709a530e64ac9e17e85d.zip
gdb-8bf7d691eb8662b118fa709a530e64ac9e17e85d.tar.gz
gdb-8bf7d691eb8662b118fa709a530e64ac9e17e85d.tar.bz2
* alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo
disassembly mask.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/alpha-opc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index f3b4884..d2a43cf 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 3f45f6c..6cf7d4c 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 } },