This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] RX: binutils - Add RXv3 support.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=f87673e04f4ec54301151f74237329df14133569

commit f87673e04f4ec54301151f74237329df14133569
Author: Yoshinori Sato <ysato@users.sourceforge.jp>
Date:   Tue Dec 25 20:04:47 2018 +0900

    RX: binutils - Add RXv3 support.
    
    	* readelf.c (get_machine_flags): Add RXv3 output.

Diff:
---
 binutils/ChangeLog | 3 +++
 binutils/readelf.c | 2 ++
 2 files changed, 5 insertions(+)

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:


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]