From 55786da2bf93d65fb63444a25bf68e8e73a1f5ed Mon Sep 17 00:00:00 2001 From: Andreas Krebbel Date: Thu, 21 Jan 2010 11:40:28 +0000 Subject: 2010-01-21 Andreas Krebbel * readelf.c (get_machine_flags): Handle EF_S390_HIGH_GPRS. 2010-01-21 Andreas Krebbel * s390.h (EF_S390_HIGH_GPRS): Added macro definition. 2010-01-21 Andreas Krebbel * config/tc-s390.c (s390_elf_final_processing): New function. * config/tc-s390.h (elf_tc_final_processing): New macro definition. (s390_elf_final_processing): Added prototype. 2010-01-21 Andreas Krebbel * elf32-s390.c (elf32_s390_merge_private_bfd_data): New function. (bfd_elf32_bfd_merge_private_bfd_data): New macro definition. --- binutils/ChangeLog | 4 ++++ binutils/readelf.c | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'binutils') diff --git a/binutils/ChangeLog b/binutils/ChangeLog index c980f85..52645fe 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2010-01-21 Andreas Krebbel + + * readelf.c (get_machine_flags): Handle EF_S390_HIGH_GPRS. + 2010-01-19 Ian Lance Taylor * objcopy.c (copy_main): Rewrite OPTION_ADD_SECTION code to work diff --git a/binutils/readelf.c b/binutils/readelf.c index 8c9edce..b9de73a 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2508,6 +2508,10 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) strcat (buf, ", 64-bit doubles"); if (e_flags & E_FLAG_RX_DSP) strcat (buf, ", dsp"); + + case EM_S390: + if (e_flags & EF_S390_HIGH_GPRS) + strcat (buf, ", highgprs"); } } -- cgit v1.1