diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-07-07 09:50:43 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2013-07-07 09:50:43 +0000 |
commit | 27c5c572c911ec2f77bab953586870919db15a29 (patch) | |
tree | 3707c6f2cb9bb03b201d4ad70e28086b9830726b /opcodes/mips16-opc.c | |
parent | e76ff5abe375e1e7535f7827db01bce70bc9710d (diff) | |
download | gdb-27c5c572c911ec2f77bab953586870919db15a29.zip gdb-27c5c572c911ec2f77bab953586870919db15a29.tar.gz gdb-27c5c572c911ec2f77bab953586870919db15a29.tar.bz2 |
include/opcode/
* mips.h: Document "+i".
opcodes/
* mips-opc.c (mips_builtin_opcodes): Use "+i" rather than "a" for
"jalx".
* mips16-opc.c (mips16_opcodes): Likewise.
* micromips-opc.c (micromips_opcodes): Likewise.
* mips-dis.c (print_insn_args, print_mips16_insn_arg)
(print_insn_mips16): Handle "+i".
(print_insn_micromips): Likewise. Conditionally preserve the
ISA bit for "a" but not for "+i".
gas/
* config/tc-mips.c (validate_mips_insn, validate_micromips_insn):
(mips_ip, mips16_ip): Handle "+i".
Diffstat (limited to 'opcodes/mips16-opc.c')
-rw-r--r-- | opcodes/mips16-opc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/mips16-opc.c b/opcodes/mips16-opc.c index 01cbcde..d90c7f3 100644 --- a/opcodes/mips16-opc.c +++ b/opcodes/mips16-opc.c @@ -167,7 +167,7 @@ const struct mips_opcode mips16_opcodes[] = {"jal", "x", 0xe840, 0xf8ff, UBD|WR_31|RD_x, 0, I1 }, {"jal", "R,x", 0xe840, 0xf8ff, UBD|WR_31|RD_x, 0, I1 }, {"jal", "a", 0x1800, 0xfc00, UBD|WR_31, 0, I1 }, -{"jalx", "a", 0x1c00, 0xfc00, UBD|WR_31, 0, I1 }, +{"jalx", "i", 0x1c00, 0xfc00, UBD|WR_31, 0, I1 }, {"jr", "x", 0xe800, 0xf8ff, UBD|RD_x, 0, I1 }, {"jr", "R", 0xe820, 0xffff, UBD|RD_31, 0, I1 }, {"j", "x", 0xe800, 0xf8ff, UBD|RD_x, 0, I1 }, |