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: [RFA] ARI fix: Remove OP at end of line in xstormy16-tdep.c


On Apr 19 14:41, Pierre Muller wrote:
> Thank you for the suggestion, this makes the things
> cleaner.
> [...]
>   So here is the new proposal:
> 
> Corinna, you are listed as maintainer of
> xstormy16-tdep, could you tell if this is OK?

Except for a missing space, yes.

> Pierre Muller
> 
> 
> 2011-04-19  Pierre Muller  <muller@ics.u-strasbg.fr>
> 	    Pedro Alves  <pedro@codesourcery.com>
> 
> 	* xstormy16-tdep.c (xstormy16_push_dummy_call): Add local
> 	variables to simplify code and avoid == operator at end of
> 	line as this is against GNU coding standards.
> 
> Index: xstormy16-tdep.c
> ===================================================================
> RCS file: /cvs/src/src/gdb/xstormy16-tdep.c,v
> retrieving revision 1.114
> diff -u -p -r1.114 xstormy16-tdep.c
> --- xstormy16-tdep.c	18 Mar 2011 18:52:32 -0000	1.114
> +++ xstormy16-tdep.c	19 Apr 2011 12:34:34 -0000
> @@ -263,12 +263,13 @@ xstormy16_push_dummy_call (struct gdbarc
>        /* Put argument into registers wordwise.  */
>        val = value_contents (args[i]);
>        for (j = 0; j < typelen; j += xstormy16_reg_size)
> -	regcache_cooked_write_unsigned (regcache, argreg++,
> -			extract_unsigned_integer (val + j,
> -						  typelen - j ==
> -						  1 ? 1 :
> -						  xstormy16_reg_size,
> -						  byte_order));
> +	{
> +	  ULONGEST regval;
> +	  int size = (typelen -j == 1) ? 1 : xstormy16_reg_size;
                              ^^^
                              - j

> +
> +	  regval = extract_unsigned_integer (val + j, size, byte_order);
> +	  regcache_cooked_write_unsigned (regcache, argreg++, regval);
> +	}
>      }
>  
>    /* Align SP */

Thanks,
Corinna

-- 
Corinna Vinschen
Cygwin Project Co-Leader
Red Hat


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