Correct more ARM VFP 32/64 and signed/unsigned typos.

Fixes unreadable fonts in Maemo guest.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4221 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
balrog 2008-04-20 00:58:01 +00:00
parent 9c9bb6c89d
commit 66230e0dee
2 changed files with 4 additions and 4 deletions

View File

@ -2271,7 +2271,7 @@ float32 VFP_HELPER(neg, s)(float32 a)
float64 VFP_HELPER(neg, d)(float64 a)
{
return float32_chs(a);
return float64_chs(a);
}
float32 VFP_HELPER(abs, s)(float32 a)
@ -2281,7 +2281,7 @@ float32 VFP_HELPER(abs, s)(float32 a)
float64 VFP_HELPER(abs, d)(float64 a)
{
return float32_abs(a);
return float64_abs(a);
}
float32 VFP_HELPER(sqrt, s)(float32 a, CPUState *env)

View File

@ -1079,9 +1079,9 @@ static inline void gen_vfp_uito(int dp)
static inline void gen_vfp_sito(int dp)
{
if (dp)
gen_helper_vfp_uitod(cpu_F0d, cpu_F0s, cpu_env);
gen_helper_vfp_sitod(cpu_F0d, cpu_F0s, cpu_env);
else
gen_helper_vfp_uitos(cpu_F0s, cpu_F0s, cpu_env);
gen_helper_vfp_sitos(cpu_F0s, cpu_F0s, cpu_env);
}
static inline void gen_vfp_toui(int dp)