* [Qemu-devel] [4221] Correct more ARM VFP 32/64 and signed/unsigned typos.
@ 2008-04-20 0:58 Andrzej Zaborowski
0 siblings, 0 replies; only message in thread
From: Andrzej Zaborowski @ 2008-04-20 0:58 UTC (permalink / raw)
To: qemu-devel
Revision: 4221
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4221
Author: balrog
Date: 2008-04-20 00:58:01 +0000 (Sun, 20 Apr 2008)
Log Message:
-----------
Correct more ARM VFP 32/64 and signed/unsigned typos.
Fixes unreadable fonts in Maemo guest.
Modified Paths:
--------------
trunk/target-arm/helper.c
trunk/target-arm/translate.c
Modified: trunk/target-arm/helper.c
===================================================================
--- trunk/target-arm/helper.c 2008-04-16 23:58:02 UTC (rev 4220)
+++ trunk/target-arm/helper.c 2008-04-20 00:58:01 UTC (rev 4221)
@@ -2271,7 +2271,7 @@
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 @@
float64 VFP_HELPER(abs, d)(float64 a)
{
- return float32_abs(a);
+ return float64_abs(a);
}
float32 VFP_HELPER(sqrt, s)(float32 a, CPUState *env)
Modified: trunk/target-arm/translate.c
===================================================================
--- trunk/target-arm/translate.c 2008-04-16 23:58:02 UTC (rev 4220)
+++ trunk/target-arm/translate.c 2008-04-20 00:58:01 UTC (rev 4221)
@@ -1079,9 +1079,9 @@
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)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-04-20 0:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-20 0:58 [Qemu-devel] [4221] Correct more ARM VFP 32/64 and signed/unsigned typos Andrzej Zaborowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).