Re: [Qemu-devel] [PATCH] target-ppc: use softfloat min/max functions

2011-04-18 Thread Alexander Graf
On 18.04.2011, at 21:23, Aurelien Jarno wrote: > Use the new softfloat float32_min() and float32_max() to implement the > vminfp and vmaxfp instructions. > > Cc: Alexander Graf > Signed-off-by: Aurelien Jarno > --- > target-ppc/op_helper.c | 16 +--- > 1 files changed, 5 insertion

Re: [Qemu-devel] [PATCH] target-ppc: use softfloat min/max functions

2011-04-18 Thread Peter Maydell
On 18 April 2011 20:23, Aurelien Jarno wrote: > diff --git a/target-ppc/op_helper.c b/target-ppc/op_helper.c > index 9aa108e..9058d78 100644 > --- a/target-ppc/op_helper.c > +++ b/target-ppc/op_helper.c > @@ -2369,22 +2369,16 @@ VMINMAX(uw, u32) >  #undef VMINMAX_DO >  #undef VMINMAX > > -#define

[Qemu-devel] [PATCH] target-ppc: use softfloat min/max functions

2011-04-18 Thread Aurelien Jarno
Use the new softfloat float32_min() and float32_max() to implement the vminfp and vmaxfp instructions. Cc: Alexander Graf Signed-off-by: Aurelien Jarno --- target-ppc/op_helper.c | 16 +--- 1 files changed, 5 insertions(+), 11 deletions(-) diff --git a/target-ppc/op_helper.c b/ta