qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Andrzej Zaborowski <balrogg@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4221] Correct more ARM VFP 32/64 and signed/unsigned typos.
Date: Sun, 20 Apr 2008 00:58:02 +0000	[thread overview]
Message-ID: <E1JnNsY-0008Tc-3B@cvs.savannah.gnu.org> (raw)

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)

                 reply	other threads:[~2008-04-20  0:58 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1JnNsY-0008Tc-3B@cvs.savannah.gnu.org \
    --to=balrogg@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).