mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-08 02:06:42 +00:00
ARM double ordering fix (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1356 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
8e96005d86
commit
9d60cac01f
@ -120,7 +120,8 @@ static inline void tswap64s(uint64_t *s)
|
|||||||
endian ! */
|
endian ! */
|
||||||
typedef union {
|
typedef union {
|
||||||
float64 d;
|
float64 d;
|
||||||
#if defined(WORDS_BIGENDIAN) || (defined(__arm__) && !defined(__VFP_FP__))
|
#if defined(WORDS_BIGENDIAN) \
|
||||||
|
|| (defined(__arm__) && !defined(__VFP_FP__) && !defined(CONFIG_SOFTFLOAT))
|
||||||
struct {
|
struct {
|
||||||
uint32_t upper;
|
uint32_t upper;
|
||||||
uint32_t lower;
|
uint32_t lower;
|
||||||
|
Loading…
Reference in New Issue
Block a user