From: Yao Qi Date: Fri, 18 Mar 2016 14:39:09 +0000 (+0000) Subject: [spu] throw error when target_read_memory fails X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=941319d15194580a047484a53f232d374dc2d712;hp=35ac8b3e2dbbe1fcd107dfcc6bbc4faed6bdc63f;p=binutils-gdb.git [spu] throw error when target_read_memory fails I happen to see that 1 is returned in spu_software_single_step when target_read_memory returns 1. It must be wrong. That patch changes it to throwing an error. Note that I choose to throw error because I find the code in the end of spu_software_single_step throws errors. gdb: 2016-03-18 Yao Qi * spu-tdep.c (spu_software_single_step): Throw error when target_read_memory fails. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2df6ccd7fa3..c0745681393 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2016-03-18 Yao Qi + + * spu-tdep.c (spu_software_single_step): Throw error when + target_read_memory fails. + 2016-03-17 Jan Kratochvil * linux-thread-db.c (check_pid_namespace_match): Extend the message. diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c index bf3b28912c6..8dad5c32520 100644 --- a/gdb/spu-tdep.c +++ b/gdb/spu-tdep.c @@ -1632,7 +1632,9 @@ spu_software_single_step (struct frame_info *frame) pc = get_frame_pc (frame); if (target_read_memory (pc, buf, 4)) - return 1; + throw_error (MEMORY_ERROR, _("Could not read instruction at %s."), + paddress (gdbarch, pc)); + insn = extract_unsigned_integer (buf, 4, byte_order); /* Get local store limit. */