This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
R: [PATCH] PR gdb/13519, disassemble command attempts to disassemble SRAM rather than program memory.
- From: cristiano de alti <cristiano_dealti at hotmail dot com>
- To: "gdb-patches at sourceware dot org" <gdb-patches at sourceware dot org>
- Date: Sat, 15 Jun 2019 20:14:33 +0000
- Subject: R: [PATCH] PR gdb/13519, disassemble command attempts to disassemble SRAM rather than program memory.
- References: <BLU436-SMTP174C641CBB21D15D7CDF01DF78B0@phx.gbl>
Hi,
Is there any chance this will be ever merged?
See
https://sourceware.org/bugzilla/show_bug.cgi?id=13519
Thanks,
Cristiano
________________________________
Da: Cristiano De Alti <cristiano_dealti@hotmail.com>
Inviato: giovedì 17 marzo 2016 23:25
A: gdb-patches@sourceware.org
Cc: Cristiano De Alti
Oggetto: [PATCH] PR gdb/13519, disassemble command attempts to disassemble SRAM rather than program memory.
gdb/ChangeLog:
2016-03-17 Cristiano De Alti <cristiano_dealti@hotmail.com>
PR gdb/13519
* avr-tdep.c (avr_integer_to_address): return data or
code address accordingly to the second 'type' argument
of the function.
---
gdb/avr-tdep.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gdb/avr-tdep.c b/gdb/avr-tdep.c
index 088fe51..993e92b 100644
--- a/gdb/avr-tdep.c
+++ b/gdb/avr-tdep.c
@@ -362,7 +362,10 @@ avr_integer_to_address (struct gdbarch *gdbarch,
{
ULONGEST addr = unpack_long (type, buf);
- return avr_make_saddr (addr);
+ if (TYPE_DATA_SPACE (type))
+ return avr_make_saddr (addr);
+ else
+ return avr_make_iaddr (addr);
}
static CORE_ADDR
--
1.7.10.4