summaryrefslogtreecommitdiff
path: root/target-sparc
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2006-12-06 15:51:39 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2006-12-06 15:51:39 +0000
commitec2309289d39dcdfd1a766b945b46d8a0e0be3a4 (patch)
tree7a06b9f04a959eb55048a4d1f19ba95b8839c9f1 /target-sparc
parent29bfb117251c96034bb9f9144bc61799137690c3 (diff)
downloadqemu-ec2309289d39dcdfd1a766b945b46d8a0e0be3a4.tar.gz
sparc-softmmu build fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2219 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc')
-rw-r--r--target-sparc/op_helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c
index f4f725d6c3..0b1d5669aa 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