Re: [Qemu-devel] [PATCH 04/14] target-mips: use softfloat constants when possible

2012-10-16 Thread Aurelien Jarno
On Wed, Oct 10, 2012 at 01:09:49PM -0700, Richard Henderson wrote: > On 10/09/2012 01:27 PM, Aurelien Jarno wrote: > > softfloat already has a few constants defined, use them instead of > > redefining them in target-mips. > > > > Rename FLOAT_SNAN32 and FLOAT_SNAN64 to FP_TO_INT32_OVERFLOW and > >

Re: [Qemu-devel] [PATCH 04/14] target-mips: use softfloat constants when possible

2012-10-10 Thread Richard Henderson
On 10/09/2012 01:27 PM, Aurelien Jarno wrote: > softfloat already has a few constants defined, use them instead of > redefining them in target-mips. > > Rename FLOAT_SNAN32 and FLOAT_SNAN64 to FP_TO_INT32_OVERFLOW and > FP_TO_INT64_OVERFLOW as even if they have the same value, they are > technical

[Qemu-devel] [PATCH 04/14] target-mips: use softfloat constants when possible

2012-10-09 Thread Aurelien Jarno
softfloat already has a few constants defined, use them instead of redefining them in target-mips. Rename FLOAT_SNAN32 and FLOAT_SNAN64 to FP_TO_INT32_OVERFLOW and FP_TO_INT64_OVERFLOW as even if they have the same value, they are technically different (and defined differently in the MIPS ISA). R