Re: [Qemu-devel] [PATCH][PPC] Use float32/64 instead of float/double

2008-01-25 Thread Blue Swirl
On 1/23/08, Aurelien Jarno <[EMAIL PROTECTED]> wrote: > Aurelien Jarno a écrit : > > On Sun, Dec 30, 2007 at 06:32:45PM +0200, Blue Swirl wrote: > >> On 12/30/07, Aurelien Jarno <[EMAIL PROTECTED]> wrote: > >>> The patch below changes the float and double types into float32 and > >>> and float64 ty

Re: [Qemu-devel] [PATCH][PPC] Use float32/64 instead of float/double

2008-01-23 Thread Aurelien Jarno
Aurelien Jarno a écrit : > On Sun, Dec 30, 2007 at 06:32:45PM +0200, Blue Swirl wrote: >> On 12/30/07, Aurelien Jarno <[EMAIL PROTECTED]> wrote: >>> The patch below changes the float and double types into float32 and >>> and float64 types in the PPC code. This doesn't change anything when >>> using

Re: [Qemu-devel] [PATCH][PPC] Use float32/64 instead of float/double

2008-01-02 Thread Aurelien Jarno
On Sun, Dec 30, 2007 at 06:32:45PM +0200, Blue Swirl wrote: > On 12/30/07, Aurelien Jarno <[EMAIL PROTECTED]> wrote: > > The patch below changes the float and double types into float32 and > > and float64 types in the PPC code. This doesn't change anything when > > using softfloat-native as the typ

Re: [Qemu-devel] [PATCH][PPC] Use float32/64 instead of float/double

2007-12-30 Thread Blue Swirl
On 12/30/07, Aurelien Jarno <[EMAIL PROTECTED]> wrote: > The patch below changes the float and double types into float32 and > and float64 types in the PPC code. This doesn't change anything when > using softfloat-native as the types are the same, but that helps > compiling the PPC target with soft

[Qemu-devel] [PATCH][PPC] Use float32/64 instead of float/double

2007-12-30 Thread Aurelien Jarno
The patch below changes the float and double types into float32 and and float64 types in the PPC code. This doesn't change anything when using softfloat-native as the types are the same, but that helps compiling the PPC target with softfloat. Index: target-ppc/op_helper.c ===