diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2010-11-23 20:24:32 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2010-11-23 20:24:32 +0000 |
commit | 435b94a4ae5c8abf1c1506a6850ad63c7bd6c032 (patch) | |
tree | ffc012ac3042275a2bdfd3959d99f884ae7198ea | |
parent | 2d8b84aee37fb51ffe5b3f8e5b6941fc21821984 (diff) | |
download | gdb-435b94a4ae5c8abf1c1506a6850ad63c7bd6c032.zip gdb-435b94a4ae5c8abf1c1506a6850ad63c7bd6c032.tar.gz gdb-435b94a4ae5c8abf1c1506a6850ad63c7bd6c032.tar.bz2 |
include/opcode/
* mips.h: Fix previous commit.
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/mips.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 8ea9b98..85ae8ab 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2010-11-23 Richard Sandiford <rdsandiford@googlemail.com> + + * mips.h: Fix previous commit. + 2010-11-23 Maciej W. Rozycki <macro@linux-mips.org> * mips.h (INSN_CHIP_MASK): Update according to INSN_LOONGSON_3A. diff --git a/include/opcode/mips.h b/include/opcode/mips.h index af9ad21..f707d46 100644 --- a/include/opcode/mips.h +++ b/include/opcode/mips.h @@ -593,9 +593,9 @@ static const unsigned int mips_isa_table[] = /* ST Microelectronics Loongson 2E. */ #define INSN_LOONGSON_2E 0x40000000 /* ST Microelectronics Loongson 2F. */ -#define INSN_LOONGSON_3A 0x00000400 +#define INSN_LOONGSON_2F 0x80000000 /* Loongson 3A. */ -#define INSN_LOONGSON_3A 0x80000400 +#define INSN_LOONGSON_3A 0x00000400 /* RMI Xlr instruction */ #define INSN_XLR 0x00000020 |