[PATCH] fix readelf's display of ARM unwind section

Richard Earnshaw rearnsha@arm.com
Thu Dec 2 10:15:00 GMT 2010


On Tue, 2010-11-30 at 13:45 -0800, Zach Welch wrote:
> This patch fixes a minor display bug in readelf when dumping ARM unwind
> sections, printing a comma missing from a list of registers.
> 
> Index: binutils-trunk/binutils/readelf.c
> ===================================================================
> --- binutils-trunk/binutils/readelf.c   (revision 307746)
> +++ binutils-trunk/binutils/readelf.c   (working copy)
> @@ -6542,7 +6542,7 @@ decode_arm_unwind (struct arm_unw_aux_info *aux,
>             }
>           if (op & 0x08)
>             {
> -             if (first)
> +             if (!first)
>                 printf (", ");
>               printf ("r14");
>             }
> 


OK.

In future please submit a ChangeLog entry along with your patch, or it
will be rejected as incomplete.

R.




More information about the Binutils mailing list