projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29bfb11
)
sparc-softmmu build fix
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 6 Dec 2006 15:51:39 +0000
(15:51 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 6 Dec 2006 15:51:39 +0000
(15:51 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2219
c046a42c
-6fe2-441c-8c8c-
71466251a162
target-sparc/op_helper.c
patch
|
blob
|
history
diff --git
a/target-sparc/op_helper.c
b/target-sparc/op_helper.c
index f4f725d6c30b256e83ff0ea34e41cafc8b9a3fb1..0b1d5669aa8cb0207936c3c3a56009c57322d6e9 100644
(file)
--- 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