Re: [Qemu-devel] [PATCH][PPC] mtfsf: fix FPSCR_VX and FPSCR_FEX computation

2008-01-23 Thread Aurelien Jarno
Jocelyn Mayer a écrit : > On Mon, 2007-12-10 at 10:13 +0100, Aurelien Jarno wrote: >> Hi all, > > Hi, > >> The patch below fix the computation of FPSCR_VX and FPSCR_FEX when >> using the mtfsf instruction. As stated in the PowerPC manual the mtfsf >> instruction can't alter those bit, and thus it

Re: [Qemu-devel] [PATCH][PPC] mtfsf: fix FPSCR_VX and FPSCR_FEX computation

2007-12-10 Thread Jocelyn Mayer
On Mon, 2007-12-10 at 10:13 +0100, Aurelien Jarno wrote: > Hi all, Hi, > The patch below fix the computation of FPSCR_VX and FPSCR_FEX when > using the mtfsf instruction. As stated in the PowerPC manual the mtfsf > instruction can't alter those bit, and thus it should always be > computed. You

[Qemu-devel] [PATCH][PPC] mtfsf: fix FPSCR_VX and FPSCR_FEX computation

2007-12-10 Thread Aurelien Jarno
Hi all, The patch below fix the computation of FPSCR_VX and FPSCR_FEX when using the mtfsf instruction. As stated in the PowerPC manual the mtfsf instruction can't alter those bit, and thus it should always be computed. Bye, Aurelien Index: target-ppc/op_helper.c ===