aboutsummaryrefslogtreecommitdiff
path: root/gdb/spu-tdep.c
diff options
context:
space:
mode:
authorYao Qi <yao.qi@linaro.org>2016-03-18 14:39:09 +0000
committerYao Qi <yao.qi@linaro.org>2016-03-18 14:39:09 +0000
commit941319d15194580a047484a53f232d374dc2d712 (patch)
tree076bd6243885f904fcc6508d6e1ffb73a904a88b /gdb/spu-tdep.c
parent35ac8b3e2dbbe1fcd107dfcc6bbc4faed6bdc63f (diff)
downloadgdb-941319d15194580a047484a53f232d374dc2d712.zip
gdb-941319d15194580a047484a53f232d374dc2d712.tar.gz
gdb-941319d15194580a047484a53f232d374dc2d712.tar.bz2
[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 <yao.qi@linaro.org> * spu-tdep.c (spu_software_single_step): Throw error when target_read_memory fails.
Diffstat (limited to 'gdb/spu-tdep.c')
-rw-r--r--gdb/spu-tdep.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c
index bf3b289..8dad5c3 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. */