This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils 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]

[commit] backends/arm_corenote.c Code cleanup [Re: [patch 2/2] Implement reglocs for s390/s390x]


On Tue, 29 Jan 2013 23:48:48 +0100, Roland McGrath wrote:
> > --- a/backends/arm_corenote.c
> > +++ b/backends/arm_corenote.c
> > @@ -84,7 +84,7 @@ static const Ebl_Core_Item vfp_items[] =
> >      {
> >        .name = "fpscr", .group = "register",
> >        .offset = 0,
> > -      .count = 0, .type = ELF_T_WORD, .format = 'x',
> > +      .type = ELF_T_WORD, .format = 'x',
> >      },
> >    };
> >  
> 
> Drop this unrelated change.  It's fine to do it as a separate commit with a
> proper ChangeLog entry for it.

This was more an accidental change as I see now but checked in.


Thanks,
Jan


commit c2d5b263b37327186c401415ed552bba94f4fb73
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Wed Jan 30 20:26:14 2013 +0100

    backends/
    	* arm_corenote.c (vfp_items): Remove zero COUNT initializer.
    
    Signed-off-by: Jan Kratochvil <jan.kratochvil@redhat.com>

diff --git a/backends/ChangeLog b/backends/ChangeLog
index cca7113..2319faf 100644
--- a/backends/ChangeLog
+++ b/backends/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-30  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+	* arm_corenote.c (vfp_items): Remove zero COUNT initializer.
+
 2012-10-12  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
 	* linux-core-note.c (prstatus_items): Rename groups of sigpend and
diff --git a/backends/arm_corenote.c b/backends/arm_corenote.c
index d527944..c5d8d88 100644
--- a/backends/arm_corenote.c
+++ b/backends/arm_corenote.c
@@ -84,7 +84,7 @@ static const Ebl_Core_Item vfp_items[] =
     {
       .name = "fpscr", .group = "register",
       .offset = 0,
-      .count = 0, .type = ELF_T_WORD, .format = 'x',
+      .type = ELF_T_WORD, .format = 'x',
     },
   };
 

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