diff options
author | Chenghua Xu <xuchenghua@loongson.cn> | 2021-07-26 20:58:49 +0800 |
---|---|---|
committer | Chenghua Xu <xuchenghua@loongson.cn> | 2021-07-27 09:18:27 +0800 |
commit | 8d56b9fcf3fa7f813e5d90c1f7add08029b6db79 (patch) | |
tree | dfc2b17238dc8fdc073d7fd7cc57185f367ba006 /opcodes | |
parent | dfe3b80549206d364eb607a5ba62c2b86d421115 (diff) | |
download | binutils-8d56b9fcf3fa7f813e5d90c1f7add08029b6db79.zip binutils-8d56b9fcf3fa7f813e5d90c1f7add08029b6db79.tar.gz binutils-8d56b9fcf3fa7f813e5d90c1f7add08029b6db79.tar.bz2 |
Correct gs264e bfd_mach in mips_arch_choices.
opcodes/
* mips-dis.c (mips_arch_choices): Correct gs264e bfd_mach.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/mips-dis.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index fbec182..6e4d758 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2021-07-26 Chenghua Xu <xuchenghua@loongson.cn> + + * mips-dis.c (mips_arch_choices): Correct gs264e bfd_mach. + 2021-06-07 Andreas Krebbel <krebbel@linux.ibm.com> * s390-opc.txt: Add qpaci. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 591caf1..1b9f886 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -670,7 +670,7 @@ const struct mips_arch_choice mips_arch_choices[] = | ASE_LOONGSON_EXT2, mips_cp0_names_numeric, NULL, 0, mips_cp1_names_mips3264, mips_hwr_names_numeric }, - { "gs264e", 1, bfd_mach_mips_gs464e, CPU_GS264E, + { "gs264e", 1, bfd_mach_mips_gs264e, CPU_GS264E, ISA_MIPS64R2, ASE_LOONGSON_MMI | ASE_LOONGSON_CAM | ASE_LOONGSON_EXT | ASE_LOONGSON_EXT2 | ASE_MSA | ASE_MSA64, mips_cp0_names_numeric, NULL, 0, mips_cp1_names_mips3264, mips_hwr_names_numeric }, |