RX: binutils - Add RXv3 support.

* readelf.c (get_machine_flags): Add RXv3 output.
This commit is contained in:
Yoshinori Sato 2018-12-25 20:04:47 +09:00
parent c8c89dac38
commit f87673e04f
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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: