All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Fix sparc build failure
@ 2006-11-21 15:01 Thiemo Seufer
  0 siblings, 0 replies; only message in thread
From: Thiemo Seufer @ 2006-11-21 15:01 UTC (permalink / raw)
  To: qemu-devel

Hello All,

this patch fixes a compile error in the sparc emulation.


Thiemo


Index: qemu-work/target-sparc/op_helper.c
===================================================================
--- qemu-work.orig/target-sparc/op_helper.c	2006-11-18 12:49:39.000000000 +0000
+++ qemu-work/target-sparc/op_helper.c	2006-11-18 12:50:13.000000000 +0000
@@ -12,12 +12,12 @@
 #ifdef USE_INT_TO_FLOAT_HELPERS
 void do_fitos(void)
 {
-    FT0 = int32_to_float32(*((int32_t *)&FT1));
+    FT0 = int32_to_float32(*((int32_t *)&FT1), &env->fp_status);
 }
 
 void do_fitod(void)
 {
-    DT0 = int32_to_float64(*((int32_t *)&FT1));
+    DT0 = int32_to_float64(*((int32_t *)&FT1), &env->fp_status);
 }
 #endif
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-11-21 15:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-21 15:01 [Qemu-devel] [PATCH] Fix sparc build failure Thiemo Seufer

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.