aboutsummaryrefslogtreecommitdiff
path: root/opcodes/mips-opc.c
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1997-10-16 16:03:22 +0000
committerGavin Romig-Koch <gavin@redhat.com>1997-10-16 16:03:22 +0000
commitb7dd310d550f4ae4b975d201353f7404900c130a (patch)
tree9ff64a8a1528c55de0cae2213aa3a11e7eeb9815 /opcodes/mips-opc.c
parent3cd99cc6463175be7f5d355fc3e39dcf658cb993 (diff)
downloadgdb-b7dd310d550f4ae4b975d201353f7404900c130a.zip
gdb-b7dd310d550f4ae4b975d201353f7404900c130a.tar.gz
gdb-b7dd310d550f4ae4b975d201353f7404900c130a.tar.bz2
opcodes/mips-opc.c: Note that 'jalx' is (probably incorrectly) marked I1.
Diffstat (limited to 'opcodes/mips-opc.c')
-rw-r--r--opcodes/mips-opc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c
index 13ce87e..81c553d 100644
--- a/opcodes/mips-opc.c
+++ b/opcodes/mips-opc.c
@@ -404,7 +404,9 @@ const struct mips_opcode mips_builtin_opcodes[] = {
assembler, but will never match user input (because the line above
will match first). */
{"jal", "a", 0x0c000000, 0xfc000000, UBD|WR_31, I1 },
-{"jalx", "a", 0x74000000, 0xfc000000, UBD|WR_31, I1 },
+ /* jalx really should only be avaliable if mips16 is available,
+ but for now make it I1. */
+{"jalx", "a", 0x74000000, 0xfc000000, UBD|WR_31, I1 },
{"la", "t,A(b)", 0, (int) M_LA_AB, INSN_MACRO },
{"lb", "t,o(b)", 0x80000000, 0xfc000000, LDD|RD_b|WR_t, I1 },
{"lb", "t,A(b)", 0, (int) M_LB_AB, INSN_MACRO },