public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Alexander Fedotov <alfedotov@gmail.com>
To: "Andre Vieira (lists)" <Andre.SimoesDiasVieira@arm.com>,
	binutils <binutils@sourceware.org>
Subject: Re: [PATCH] elf32-arm.c: Use prefix 0x when printing private flags. elfnn-aarch64.c: Likewise.
Date: Mon, 21 Dec 2020 12:26:54 +0300	[thread overview]
Message-ID: <CAN8C2CpcGm0qJdN+qrFxO7Mvn7F5YRAHUMi3Su_htr6=gEBpUQ@mail.gmail.com> (raw)
In-Reply-To: <CAN8C2Crqe1wgtQZY9qs_epzOj5qbDFJj5-Yp_CHHbyxUYOD3MA@mail.gmail.com>

Hi Andre

Could you please take a look in this patch ?

Best regards,
Alex

On Mon, Dec 14, 2020 at 3:46 PM Alexander Fedotov <alfedotov@gmail.com> wrote:
>
> Hi Nick
>
> Could you please take a look at this tiny fix. I've run make-check for
> Arm and AArch64 w/o errors locally.
>
> Best regards,
> Alex
>
>
> On Thu, Dec 10, 2020 at 3:43 PM Alexander Fedotov <alfedotov@gmail.com> wrote:
> >
> > Currently objudmp for Arm and AArch64 shows flags in decimal format that is misleading.
> >
> > ---
> >  bfd/ChangeLog       | 6 ++++++
> >  bfd/elf32-arm.c     | 4 ++--
> >  bfd/elfnn-aarch64.c | 4 ++--
> >  3 files changed, 10 insertions(+), 4 deletions(-)
> >
> > diff --git a/bfd/ChangeLog b/bfd/ChangeLog
> > index 99c275ce4f..3717cf4ffe 100644
> > --- a/bfd/ChangeLog
> > +++ b/bfd/ChangeLog
> > @@ -1,3 +1,9 @@
> > +2020-12-08  Alexander Fedotov  <alfedotov@gmail.com>
> > +
> > +       * elf32-arm.c (elf32_arm_print_private_bfd_data): Use prefix 0x
> > +       when printing private flags.
> > +       * elfnn-aarch64.c (elfNN_aarch64_print_private_bfd_data): Likewise.
> > +
> >  2020-12-07  Siddhesh Poyarekar  <siddhesh@sourceware.org>
> >
> >         PR 26945
> > diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c
> > index 2f6bd88555..eadfc34249 100644
> > --- a/bfd/elf32-arm.c
> > +++ b/bfd/elf32-arm.c
> > @@ -15062,7 +15062,7 @@ elf32_arm_print_private_bfd_data (bfd *abfd, void * ptr)
> >    /* Ignore init flag - it may not be set, despite the flags field
> >       containing valid data.  */
> >
> > -  fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
> > +  fprintf (file, _("private flags = 0x%lx:"), elf_elfheader (abfd)->e_flags);
> >
> >    switch (EF_ARM_EABI_VERSION (flags))
> >      {
> > @@ -15183,7 +15183,7 @@ elf32_arm_print_private_bfd_data (bfd *abfd, void * ptr)
> >    flags &= ~ (EF_ARM_RELEXEC | EF_ARM_PIC);
> >
> >    if (flags)
> > -    fprintf (file, _("<Unrecognised flag bits set>"));
> > +    fprintf (file, _(" <Unrecognised flag bits set>"));
> >
> >    fputc ('\n', file);
> >
> > diff --git a/bfd/elfnn-aarch64.c b/bfd/elfnn-aarch64.c
> > index fcb6171679..96eef4ec43 100644
> > --- a/bfd/elfnn-aarch64.c
> > +++ b/bfd/elfnn-aarch64.c
> > @@ -7331,10 +7331,10 @@ elfNN_aarch64_print_private_bfd_data (bfd *abfd, void *ptr)
> >       containing valid data.  */
> >
> >    /* xgettext:c-format */
> > -  fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
> > +  fprintf (file, _("private flags = 0x%lx:"), elf_elfheader (abfd)->e_flags);
> >
> >    if (flags)
> > -    fprintf (file, _("<Unrecognised flag bits set>"));
> > +    fprintf (file, _(" <Unrecognised flag bits set>"));
> >
> >    fputc ('\n', file);
> >
> > --
> > 2.25.1
> >

  reply	other threads:[~2020-12-21  9:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-10 12:43 Alexander Fedotov
2020-12-14 12:46 ` Alexander Fedotov
2020-12-21  9:26   ` Alexander Fedotov [this message]
2021-01-04 15:16     ` Nick Clifton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAN8C2CpcGm0qJdN+qrFxO7Mvn7F5YRAHUMi3Su_htr6=gEBpUQ@mail.gmail.com' \
    --to=alfedotov@gmail.com \
    --cc=Andre.SimoesDiasVieira@arm.com \
    --cc=binutils@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).