From: ths Date: Wed, 6 Dec 2006 15:51:39 +0000 (+0000) Subject: sparc-softmmu build fix X-Git-Tag: TizenStudio_2.0_p2.3~14001 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec2309289d39dcdfd1a766b945b46d8a0e0be3a4;p=sdk%2Femulator%2Fqemu.git sparc-softmmu build fix git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2219 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index f4f725d..0b1d566 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -12,12 +12,12 @@ void raise_exception(int tt) #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