diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2012-09-18 14:36:04 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2012-09-18 14:36:04 +0000 |
commit | a083a144a5ae40f1314f64ab57e82075130e9760 (patch) | |
tree | 1ea81ba7e4599e48ebb086c45c38387ca1bd1789 /opcodes | |
parent | c3ceeea01dd5b574c05b158123fa3ef35d8dcbcc (diff) | |
download | gdb-a083a144a5ae40f1314f64ab57e82075130e9760.zip gdb-a083a144a5ae40f1314f64ab57e82075130e9760.tar.gz gdb-a083a144a5ae40f1314f64ab57e82075130e9760.tar.bz2 |
opcodes/
* micromips-opc.c (micromips_opcodes): Correct the encoding of
the "swxc1" instruction.
gas/testsuite/
* gas/mips/micromips.d: Correct the disassembly of SWXC1.
* gas/mips/micromips-trap.d: Likewise.
* gas/mips/micromips@24k-triple-stores-1.d: Likewise.
* gas/mips/micromips@mips4-fp.d: Likewise.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/micromips-opc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index e2f535e..916db7e 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2012-09-18 Chao-ying Fu <fu@mips.com> + + * micromips-opc.c (micromips_opcodes): Correct the encoding of + the "swxc1" instruction. + 2012-09-17 Yufeng Zhang <yufeng.zhang@arm.com> * aarch64-asm.c (aarch64_ins_imm_half): Remove ATTRIBUTE_UNUSED from diff --git a/opcodes/micromips-opc.c b/opcodes/micromips-opc.c index b4982cc..5e71dfb 100644 --- a/opcodes/micromips-opc.c +++ b/opcodes/micromips-opc.c @@ -911,7 +911,7 @@ const struct mips_opcode micromips_opcodes[] = {"invalidate", "t,~(b)",0x60009000, 0xfc00f000, SM|RD_b|RD_t, 0, I1 }, /* same */ {"invalidate", "t,o(b)",0, (int) M_SWR_OB, INSN_MACRO, 0, I1 }, {"invalidate", "t,A(b)",0, (int) M_SWR_AB, INSN_MACRO, 0, I1 }, -{"swxc1", "D,t(b)", 0x54000048, 0xfc0007ff, SM|RD_t|RD_b|FP_S, RD_D, I1 }, +{"swxc1", "D,t(b)", 0x54000088, 0xfc0007ff, SM|RD_t|RD_b|FP_S, RD_D, I1 }, {"sync_acquire", "", 0x00116b7c, 0xffffffff, NODS, 0, I1 }, {"sync_mb", "", 0x00106b7c, 0xffffffff, NODS, 0, I1 }, {"sync_release", "", 0x00126b7c, 0xffffffff, NODS, 0, I1 }, |