This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH] MIPS/GAS: Correct the AFL_ASE_MASK macro
- From: Paul Hua <paul dot hua dot gm at gmail dot com>
- To: binutils at sourceware dot org
- Cc: macro at linux-mips dot org
- Date: Tue, 24 Jul 2018 12:20:25 +0800
- Subject: [PATCH] MIPS/GAS: Correct the AFL_ASE_MASK macro
Hi:
Fix an issue with commit 8095d2f70e1a ("MIPS/GAS: Split Loongson MMI
Instructions from loongson2f/3a"), The AFL_ASE_MASK should be
0x0007ffff instead of 0x0004ffff.
Paul Hua
2018-07-24 Chenghua Xu <paul.hua.gm@gmail.com>
include/
* elf/mips.h (AFL_ASE_MASK): Correct typo.
diff --git a/include/elf/mips.h b/include/elf/mips.h
index 2d73212..21aef6c 100644
--- a/include/elf/mips.h
+++ b/include/elf/mips.h
@@ -1239,7 +1239,7 @@ extern void bfd_mips_elf_swap_abiflags_v0_out
#define AFL_ASE_RESERVED1 0x00010000 /* Reserved by MIPS Tech for WIP. */
#define AFL_ASE_GINV 0x00020000 /* GINV ASE. */
#define AFL_ASE_LOONGSON_MMI 0x00040000 /* Loongson MMI ASE. */
-#define AFL_ASE_MASK 0x0004ffff /* All ASEs. */
+#define AFL_ASE_MASK 0x0007ffff /* All ASEs. */
/* Values for the isa_ext word of an ABI flags structure. */