From f87673e04f4ec54301151f74237329df14133569 Mon Sep 17 00:00:00 2001 From: Yoshinori Sato Date: Tue, 25 Dec 2018 20:04:47 +0900 Subject: [PATCH] RX: binutils - Add RXv3 support. * readelf.c (get_machine_flags): Add RXv3 output. --- 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 + * readelf.c (get_machine_flags): Add RXv3 output. + 2019-01-04 Nick Clifton 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: -- 2.7.4