diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2018-12-25 20:04:47 +0900 |
---|---|---|
committer | Yoshinori Sato <ysato@users.sourceforge.jp> | 2019-01-05 22:53:42 +0900 |
commit | f87673e04f4ec54301151f74237329df14133569 (patch) | |
tree | 0bb9cfc0ad39a9cce52411c910df0879b65b2291 /binutils | |
parent | c8c89dac38c723a2dcff9beceb9e7c09b0c5f3d4 (diff) | |
download | gdb-f87673e04f4ec54301151f74237329df14133569.zip gdb-f87673e04f4ec54301151f74237329df14133569.tar.gz gdb-f87673e04f4ec54301151f74237329df14133569.tar.bz2 |
RX: binutils - Add RXv3 support.
* readelf.c (get_machine_flags): Add RXv3 output.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 3 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9fef84b..d7f1685 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,6 @@ +2018-12-25 Yoshinori Sato <ysato@users.sourceforge.jp> + * readelf.c (get_machine_flags): Add RXv3 output. + 2019-01-04 Nick Clifton <nickc@redhat.com> PR 24005 diff --git a/binutils/readelf.c b/binutils/readelf.c index aac3b06..44577d8 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -3689,6 +3689,8 @@ get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine) ? ", uses String instructions" : ", bans String instructions"); if (e_flags & E_FLAG_RX_V2) strcat (buf, ", V2"); + if (e_flags & E_FLAG_RX_V3) + strcat (buf, ", V3"); break; case EM_S390: |