diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-08-01 20:25:30 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2013-08-01 20:25:30 +0000 |
commit | 344c74a665f2f76ce61b1306fa983d7862ab66dc (patch) | |
tree | 99c9efb0052b8f1c171a996fc6bf73eada4af16c /opcodes/mips-opc.c | |
parent | 41989114b803bc1da171c59f941adf2064504473 (diff) | |
download | gdb-344c74a665f2f76ce61b1306fa983d7862ab66dc.zip gdb-344c74a665f2f76ce61b1306fa983d7862ab66dc.tar.gz gdb-344c74a665f2f76ce61b1306fa983d7862ab66dc.tar.bz2 |
opcodes/
* mips-opc.c (mips_builtin_opcodes): Use WR_31 rather than WR_d
for the single-operand forms of JALR and JALR.HB.
* micromips-opc.c (micromips_opcodes): Likewise JALR, JALRS, JALR.HB
and JALRS.HB.
Diffstat (limited to 'opcodes/mips-opc.c')
-rw-r--r-- | opcodes/mips-opc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 80b555b..ba817f5 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -942,11 +942,11 @@ const struct mips_opcode mips_builtin_opcodes[] = assembler, but will never match user input (because the line above will match first). */ {"j", "a", 0x08000000, 0xfc000000, UBD, 0, I1, 0, 0 }, -{"jalr", "s", 0x0000f809, 0xfc1fffff, UBD|RD_s|WR_d, 0, I1, 0, 0 }, +{"jalr", "s", 0x0000f809, 0xfc1fffff, UBD|RD_s|WR_31, 0, I1, 0, 0 }, {"jalr", "d,s", 0x00000009, 0xfc1f07ff, UBD|RD_s|WR_d, 0, I1, 0, 0 }, /* jalr.hb is officially MIPS{32,64}R2, but it works on R1 as jalr with the same hazard barrier effect. */ -{"jalr.hb", "s", 0x0000fc09, 0xfc1fffff, UBD|RD_s|WR_d, 0, I32, 0, 0 }, +{"jalr.hb", "s", 0x0000fc09, 0xfc1fffff, UBD|RD_s|WR_31, 0, I32, 0, 0 }, {"jalr.hb", "d,s", 0x00000409, 0xfc1f07ff, UBD|RD_s|WR_d, 0, I32, 0, 0 }, /* SVR4 PIC code requires special handling for jal, so it must be a macro. */ |