diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-10 20:00:18 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-10 20:00:18 +0000 |
commit | c5d04e99f362aa4d3e9aef72bb3f867689a60dff (patch) | |
tree | b2c915ef7215bcd67a380030c6af866c1407abd7 /target-sparc/helper.h | |
parent | e2ea21b39660eb6938cb26a36248e23361d9534d (diff) |
Partially convert float128 conversion ops to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5192 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/helper.h')
-rw-r--r-- | target-sparc/helper.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/target-sparc/helper.h b/target-sparc/helper.h index 14ca509777..7dc654780d 100644 --- a/target-sparc/helper.h +++ b/target-sparc/helper.h @@ -115,7 +115,8 @@ F_HELPER_0_0(smuld); F_HELPER_0_0(dmulq); DEF_HELPER(float32, helper_fnegs, (float32 src)) -F_HELPER_DQ_0_0(ito); +F_HELPER_0_0(itod); +DEF_HELPER(void, helper_fitoq, (int32_t src)) DEF_HELPER(float32, helper_fitos, (int32_t src)) @@ -126,13 +127,13 @@ F_HELPER_SDQ_0_0(xto); #endif F_HELPER_0_0(dtos); F_HELPER_0_0(stod); -F_HELPER_0_0(qtos); -F_HELPER_0_0(stoq); +DEF_HELPER(float32, helper_fqtos, (void)) +DEF_HELPER(void, helper_fstoq, (float32 src)) F_HELPER_0_0(qtod); F_HELPER_0_0(dtoq); DEF_HELPER(int32_t, helper_fstoi, (float32 src)) F_HELPER_0_0(dtoi); -F_HELPER_0_0(qtoi); +DEF_HELPER(int32_t, helper_fqtoi, (void)) #ifdef TARGET_SPARC64 F_HELPER_0_0(stox); F_HELPER_0_0(dtox); |