From: Amrita Honap <Amrita.Honap@kpit.com>
To: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: [PATCH RL78]:Fix offset for mem_get_si in sim
Date: Thu, 19 Feb 2015 10:52:00 -0000 [thread overview]
Message-ID: <SG2PR03MB0730F84AF16BE1AF7357AF66E72D0@SG2PR03MB0730.apcprd03.prod.outlook.com> (raw)
Hi,
The following patch fixes the handling of the offset that is generated
for the mem_get_si.
The mem_get_si reads the 0th,1st and 2nd byte correctly and fails on the 3rd byte,
where it is again reading the 2nd byte.
This patch should fix this problem.
Regards,
Amrita Honap
=======================Start of Patch================================
Changelog
2015-02-19 Amrita Honap <Amrita.Honap@kpit.com>
* rl78/mem.c (mem_get_si) : Fix offset for mem_get_si
diff -rNup src/gdb-7.8.2/sim/rl78/mem.c.orig src/gdb-7.8.2/sim/rl78/mem.c
--- src/gdb-7.8.2/sim/rl78/mem.c.orig 2015-02-19 16:01:39.199243028 +0530
+++ src/gdb-7.8.2/sim/rl78/mem.c 2015-02-19 15:56:14.891262201 +0530
@@ -435,7 +435,7 @@ mem_get_si (int address)
v = mem_get_byte (address)
| mem_get_byte (address + 1) * 256
| mem_get_byte (address + 2) * 65536
- | mem_get_byte (address + 2) * 16777216;
+ | mem_get_byte (address + 3) * 16777216;
CHECK_ALIGNMENT (address, v, 3);
tprintf ("(\033[35m[%05X]->%04X)\033[0m", address, v);
return v;
=========================End Of Patch================================
Apologies for any company disclaimer that may get added to this e-mail.
next reply other threads:[~2015-02-19 10:52 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-19 10:52 Amrita Honap [this message]
2015-02-19 16:01 ` Mike Frysinger
2015-02-19 16:10 ` DJ Delorie
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=SG2PR03MB0730F84AF16BE1AF7357AF66E72D0@SG2PR03MB0730.apcprd03.prod.outlook.com \
--to=amrita.honap@kpit.com \
--cc=gdb-patches@sourceware.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