mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06: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
2 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue