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: xtensa: fix on 64 bit hosts


On 01/16/2014 01:02 PM, Baruch Siach wrote:
> On 64 bit hosts unsigned long is 64 bit. Use uint32_t instead.
> 
> 	* xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t

Missing period.

OK (and obvious).

> ---
>  gdb/xtensa-tdep.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gdb/xtensa-tdep.h b/gdb/xtensa-tdep.h
> index 968b9d2916b7..d7ba5628e42a 100644
> --- a/gdb/xtensa-tdep.h
> +++ b/gdb/xtensa-tdep.h
> @@ -84,7 +84,7 @@ typedef enum
>  /* Xtensa ELF core file register set representation ('.reg' section).
>     Copied from target-side ELF header <xtensa/elf.h>.  */
>  
> -typedef unsigned long xtensa_elf_greg_t;
> +typedef uint32_t xtensa_elf_greg_t;
>  
>  typedef struct
>  {
> 


-- 
Pedro Alves


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