diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-10 10:14:22 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-10 10:14:22 +0000 |
commit | 4d7a0880ca35ea95d30583d137b1558d4dd166bc (patch) | |
tree | 139b0c5c9ce80b8b250009aa50d5d0e086622ed7 /cpu-all.h | |
parent | Fix compiler warnings (diff) | |
download | qemu-kvm-4d7a0880ca35ea95d30583d137b1558d4dd166bc.tar.gz qemu-kvm-4d7a0880ca35ea95d30583d137b1558d4dd166bc.tar.bz2 qemu-kvm-4d7a0880ca35ea95d30583d137b1558d4dd166bc.zip |
Fix compiler warnings in common files
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4405 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-all.h')
-rw-r--r-- | cpu-all.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -452,7 +452,7 @@ static inline uint64_t ldq_be_p(void *ptr) { uint32_t a,b; a = ldl_be_p(ptr); - b = ldl_be_p(ptr+4); + b = ldl_be_p((uint8_t *)ptr + 4); return (((uint64_t)a<<32)|b); } @@ -489,7 +489,7 @@ static inline void stl_be_p(void *ptr, int v) static inline void stq_be_p(void *ptr, uint64_t v) { stl_be_p(ptr, v >> 32); - stl_be_p(ptr + 4, v); + stl_be_p((uint8_t *)ptr + 4, v); } /* float access */ @@ -518,7 +518,7 @@ static inline float64 ldfq_be_p(void *ptr) { CPU_DoubleU u; u.l.upper = ldl_be_p(ptr); - u.l.lower = ldl_be_p(ptr + 4); + u.l.lower = ldl_be_p((uint8_t *)ptr + 4); return u.d; } @@ -527,7 +527,7 @@ static inline void stfq_be_p(void *ptr, float64 v) CPU_DoubleU u; u.d = v; stl_be_p(ptr, u.l.upper); - stl_be_p(ptr + 4, u.l.lower); + stl_be_p((uint8_t *)ptr + 4, u.l.lower); } #else |