All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pablo Virolainen <Pablo.Virolainen@nomovok.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] Small note about qemu/target-sh4/op.c
Date: Tue, 18 Jul 2006 15:54:00 +0300	[thread overview]
Message-ID: <44BCD9E8.6060108@nomovok.com> (raw)


Hello,

I just noticed that op_dec8_rN and op_dec8_rN might have a copy-paste
error. I wonder if it should be like

RCS file: /sources/qemu/qemu/target-sh4/op.c,v
retrieving revision 1.3
diff -u -r1.3 op.c
--- op.c        18 Jun 2006 19:12:54 -0000      1.3
+++ op.c        18 Jul 2006 12:22:23 -0000
@@ -737,7 +737,7 @@

 void OPPROTO op_dec8_rN(void)
 {
-    env->gregs[PARAM1] -= 4;
+    env->gregs[PARAM1] -= 8;
     RETURN();
 }

@@ -761,7 +761,7 @@

 void OPPROTO op_inc8_rN(void)
 {
-    env->gregs[PARAM1] += 4;
+    env->gregs[PARAM1] += 8;
     RETURN();
 }

Pablo Virolainen

             reply	other threads:[~2006-07-18 12:54 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-07-18 12:54 Pablo Virolainen [this message]
2006-07-18 17:03 ` [Qemu-devel] smc91x irq patch Thorsten Zitterell
2006-07-19  3:29   ` Paul Brook
2006-07-19 17:53     ` Fabrice Bellard
2006-07-19 18:15       ` Paul Brook

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=44BCD9E8.6060108@nomovok.com \
    --to=pablo.virolainen@nomovok.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.