[PATCH/committed] Add some DFP define_{expand,insn} for rs6000

Peter Bergner bergner@vnet.ibm.com
Tue Apr 17 22:12:00 GMT 2007


On Tue, 2007-04-17 at 11:22 -0400, David Edelsohn wrote:
> This is okay, but please change
> 
> +       && ((mode != TDmode) || !(regno % 2))
> 
> to "(regno % 2) == 0" not using modulus as a truth value operator.

Ok, I changed the above line to:

	&& (mode != TDmode || (regno % 2) == 0)

and committed it.  Thanks.

Peter





More information about the Gcc-patches mailing list