diff options
Diffstat (limited to 'elfcpp')
-rw-r--r-- | elfcpp/ChangeLog | 4 | ||||
-rw-r--r-- | elfcpp/mips.h | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index fa33bf1..075f247 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,7 @@ +2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com> + + * mips.h (AFL_ASE_LOONGSON_EXT): New enum. + 2018-07-06 Alan Modra <amodra@gmail.com> * powerpc.h (Tag_GNU_Power_ABI_FP): Define. diff --git a/elfcpp/mips.h b/elfcpp/mips.h index cac8592..5a59599 100644 --- a/elfcpp/mips.h +++ b/elfcpp/mips.h @@ -308,7 +308,9 @@ enum // MICROMIPS ASE. AFL_ASE_MICROMIPS = 0x00000800, // XPA ASE. - AFL_ASE_XPA = 0x00001000 + AFL_ASE_XPA = 0x00001000, + // Loongson EXT ASE. + AFL_ASE_LOONGSON_EXT = 0x00002000 }; // Values for the isa_ext word of an ABI flags structure. |