diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-03 23:41:14 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-01-03 23:41:14 +0000 |
commit | 526ff7de82fe82f83f8de966aee03fa78ff8a36f (patch) | |
tree | 591a1921958020a9be394c5d8dfa75fdca139de8 | |
parent | 995179f1ccb9fbc88b5af70614e5ae22bf43e506 (diff) | |
download | qemu-526ff7de82fe82f83f8de966aee03fa78ff8a36f.zip qemu-526ff7de82fe82f83f8de966aee03fa78ff8a36f.tar.gz qemu-526ff7de82fe82f83f8de966aee03fa78ff8a36f.tar.bz2 |
removed warnings
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1193 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | target-arm/nwfpe/double_cpdo.c | 2 | ||||
-rw-r--r-- | target-arm/nwfpe/single_cpdo.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target-arm/nwfpe/double_cpdo.c b/target-arm/nwfpe/double_cpdo.c index 0f303ea..f1738ea 100644 --- a/target-arm/nwfpe/double_cpdo.c +++ b/target-arm/nwfpe/double_cpdo.c @@ -38,7 +38,7 @@ float64 float64_pol(float64 rFn,float64 rFm); unsigned int DoubleCPDO(const unsigned int opcode) { FPA11 *fpa11 = GET_FPA11(); - float64 rFm, rFn; + float64 rFm, rFn = 0; unsigned int Fd, Fm, Fn, nRc = 1; //printk("DoubleCPDO(0x%08x)\n",opcode); diff --git a/target-arm/nwfpe/single_cpdo.c b/target-arm/nwfpe/single_cpdo.c index c38cb01..58da89b 100644 --- a/target-arm/nwfpe/single_cpdo.c +++ b/target-arm/nwfpe/single_cpdo.c @@ -38,7 +38,7 @@ float32 float32_pol(float32 rFn,float32 rFm); unsigned int SingleCPDO(const unsigned int opcode) { FPA11 *fpa11 = GET_FPA11(); - float32 rFm, rFn; + float32 rFm, rFn = 0; unsigned int Fd, Fm, Fn, nRc = 1; Fm = getFm(opcode); |