qemu-trivial.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-trivial] [Qemu-devel] [PATCH] arm cpu state loading fix
@ 2011-10-17 10:53 Dmitry Koshelev
  2011-10-17 11:19 ` Peter Maydell
  2011-10-17 11:50 ` [Qemu-trivial] " Juan Quintela
  0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Koshelev @ 2011-10-17 10:53 UTC (permalink / raw)
  To: qemu-devel, paul; +Cc: qemu-trivial

Floating registers loading fix.

Signed-off-by: Dmitry Koshelev <karaghiozis@gmail.com>
---
 target-arm/machine.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/target-arm/machine.c b/target-arm/machine.c
index 3925d3a..73d82c9 100644
--- a/target-arm/machine.c
+++ b/target-arm/machine.c
@@ -175,7 +175,7 @@ int cpu_load(QEMUFile *f, void *opaque, int version_id)
         env->vfp.vec_stride = qemu_get_be32(f);

         if (arm_feature(env, ARM_FEATURE_VFP3)) {
-            for (i = 0;  i < 16; i++) {
+            for (i = 16;  i < 32; i++) {
                 CPU_DoubleU u;
                 u.l.upper = qemu_get_be32(f);
                 u.l.lower = qemu_get_be32(f);


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-10-17 11:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-17 10:53 [Qemu-trivial] [Qemu-devel] [PATCH] arm cpu state loading fix Dmitry Koshelev
2011-10-17 11:19 ` Peter Maydell
2011-10-17 11:50 ` [Qemu-trivial] " Juan Quintela
2011-10-17 11:57   ` [Qemu-trivial] [Qemu-devel] " Peter Maydell

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).