mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 16:52:06 +00:00
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:
parent
9c9bb6c89d
commit
66230e0dee
@ -2271,7 +2271,7 @@ float32 VFP_HELPER(neg, s)(float32 a)
|
|||||||
|
|
||||||
float64 VFP_HELPER(neg, d)(float64 a)
|
float64 VFP_HELPER(neg, d)(float64 a)
|
||||||
{
|
{
|
||||||
return float32_chs(a);
|
return float64_chs(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
float32 VFP_HELPER(abs, s)(float32 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)
|
float64 VFP_HELPER(abs, d)(float64 a)
|
||||||
{
|
{
|
||||||
return float32_abs(a);
|
return float64_abs(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
float32 VFP_HELPER(sqrt, s)(float32 a, CPUState *env)
|
float32 VFP_HELPER(sqrt, s)(float32 a, CPUState *env)
|
||||||
|
@ -1079,9 +1079,9 @@ static inline void gen_vfp_uito(int dp)
|
|||||||
static inline void gen_vfp_sito(int dp)
|
static inline void gen_vfp_sito(int dp)
|
||||||
{
|
{
|
||||||
if (dp)
|
if (dp)
|
||||||
gen_helper_vfp_uitod(cpu_F0d, cpu_F0s, cpu_env);
|
gen_helper_vfp_sitod(cpu_F0d, cpu_F0s, cpu_env);
|
||||||
else
|
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)
|
static inline void gen_vfp_toui(int dp)
|
||||||
|
Loading…
Reference in New Issue
Block a user