mirror of https://github.com/xemu-project/xemu.git
removed warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1193 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
995179f1cc
commit
526ff7de82
target-arm/nwfpe
|
@ -38,7 +38,7 @@ float64 float64_pol(float64 rFn,float64 rFm);
|
||||||
unsigned int DoubleCPDO(const unsigned int opcode)
|
unsigned int DoubleCPDO(const unsigned int opcode)
|
||||||
{
|
{
|
||||||
FPA11 *fpa11 = GET_FPA11();
|
FPA11 *fpa11 = GET_FPA11();
|
||||||
float64 rFm, rFn;
|
float64 rFm, rFn = 0;
|
||||||
unsigned int Fd, Fm, Fn, nRc = 1;
|
unsigned int Fd, Fm, Fn, nRc = 1;
|
||||||
|
|
||||||
//printk("DoubleCPDO(0x%08x)\n",opcode);
|
//printk("DoubleCPDO(0x%08x)\n",opcode);
|
||||||
|
|
|
@ -38,7 +38,7 @@ float32 float32_pol(float32 rFn,float32 rFm);
|
||||||
unsigned int SingleCPDO(const unsigned int opcode)
|
unsigned int SingleCPDO(const unsigned int opcode)
|
||||||
{
|
{
|
||||||
FPA11 *fpa11 = GET_FPA11();
|
FPA11 *fpa11 = GET_FPA11();
|
||||||
float32 rFm, rFn;
|
float32 rFm, rFn = 0;
|
||||||
unsigned int Fd, Fm, Fn, nRc = 1;
|
unsigned int Fd, Fm, Fn, nRc = 1;
|
||||||
|
|
||||||
Fm = getFm(opcode);
|
Fm = getFm(opcode);
|
||||||
|
|
Loading…
Reference in New Issue