This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

R: [PATCH] PR gdb/13519, disassemble command attempts to disassemble SRAM rather than program memory.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]