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

Re: [PATCH,gdb,Update3]: ensures that cie ptr of an fda is a cie


On Wed, 06 Jul 2011 16:40:14 +0200, Fawzi Mohamed wrote:
> +/* Defines the type of eh_frames that are expected to be decoded: CIE, FDE
> +   or any of them. */
                    ^^^ Two spaces at the end of line.

> +
> +enum eh_frame_type
> +{
> +  EH_CIE_TYPE_ID = 1 << 0,
> +  EH_FDE_TYPE_ID = 1 << 1,
> +  EH_CIE_OR_FDE_TYPE_ID = EH_CIE_TYPE_ID + EH_FDE_TYPE_ID

A nitpick but the intended operation is | , not + .


[...]
> @@ -2102,7 +2127,7 @@
>   while (1)
>     {
>       ret = decode_frame_entry_1 (unit, start, eh_frame_p,
> -                                  cie_table, fde_table);
> +				  cie_table, fde_table,entry_type);
   				                      ^^ missing space (' ')


Thanks for the fix,
Jan


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