diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0f63148..1bd5cf6 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com> + + * readelf.c (print_mips_ases): Add CAM extension. + 2018-08-27 H.J. Lu <hongjiu.lu@intel.com> * readelf.c (decode_x86_isa): Print <None> if bitmask only diff --git a/binutils/readelf.c b/binutils/readelf.c index d2ee7a3..039717a 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -15651,6 +15651,8 @@ print_mips_ases (unsigned int mask) fputs ("\n\tGINV ASE", stdout); if (mask & AFL_ASE_LOONGSON_MMI) fputs ("\n\tLoongson MMI ASE", stdout); + if (mask & AFL_ASE_LOONGSON_CAM) + fputs ("\n\tLoongson CAM ASE", stdout); if (mask == 0) fprintf (stdout, "\n\t%s", _("None")); else if ((mask & ~AFL_ASE_MASK) != 0) |