* [Qemu-devel] [patch] softmmu vs. softfloat
@ 2005-10-31 3:53 Paul Brook
0 siblings, 0 replies; only message in thread
From: Paul Brook @ 2005-10-31 3:53 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 138 bytes --]
The attached patch fixes softmmu_header.h to use "float32" and "float64" from
softfloat.h instead of native "float" and "double".
Paul
[-- Attachment #2: patch.qemu_softfloat_mmu --]
[-- Type: text/x-diff, Size: 1524 bytes --]
Index: softmmu_header.h
===================================================================
RCS file: /cvsroot/qemu/qemu/softmmu_header.h,v
retrieving revision 1.9
diff -u -p -r1.9 softmmu_header.h
--- softmmu_header.h 2 Jul 2005 14:56:31 -0000 1.9
+++ softmmu_header.h 31 Oct 2005 03:44:50 -0000
@@ -304,20 +312,20 @@ static inline void glue(glue(st, SUFFIX)
#endif
#if DATA_SIZE == 8
-static inline double glue(ldfq, MEMSUFFIX)(target_ulong ptr)
+static inline float64 glue(ldfq, MEMSUFFIX)(target_ulong ptr)
{
union {
- double d;
+ float64 d;
uint64_t i;
} u;
u.i = glue(ldq, MEMSUFFIX)(ptr);
return u.d;
}
-static inline void glue(stfq, MEMSUFFIX)(target_ulong ptr, double v)
+static inline void glue(stfq, MEMSUFFIX)(target_ulong ptr, float64 v)
{
union {
- double d;
+ float64 d;
uint64_t i;
} u;
u.d = v;
@@ -326,20 +334,20 @@ static inline void glue(stfq, MEMSUFFIX)
#endif /* DATA_SIZE == 8 */
#if DATA_SIZE == 4
-static inline float glue(ldfl, MEMSUFFIX)(target_ulong ptr)
+static inline float32 glue(ldfl, MEMSUFFIX)(target_ulong ptr)
{
union {
- float f;
+ float32 f;
uint32_t i;
} u;
u.i = glue(ldl, MEMSUFFIX)(ptr);
return u.f;
}
-static inline void glue(stfl, MEMSUFFIX)(target_ulong ptr, float v)
+static inline void glue(stfl, MEMSUFFIX)(target_ulong ptr, float32 v)
{
union {
- float f;
+ float32 f;
uint32_t i;
} u;
u.f = v;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-10-31 3:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-31 3:53 [Qemu-devel] [patch] softmmu vs. softfloat Paul Brook
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.