summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2009-03-18 01:13:19 +0000
committerPedro Alves <palves@redhat.com>2009-03-18 01:13:19 +0000
commit717a8278b140f1127459a38138085f36496eba63 (patch)
treedf446b0f074dfa8266724b0d56899f82794cd7a2
parentc743cf5d81e46011aada39382daabf1383f3ad41 (diff)
downloadppe42-binutils-717a8278b140f1127459a38138085f36496eba63.tar.gz
ppe42-binutils-717a8278b140f1127459a38138085f36496eba63.zip
* breakpoint.c (bpstat_should_step): Only consider software
watchpoints that have a location.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/breakpoint.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 82508e0ac2..a57510148b 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-18 Pedro Alves <pedro@codesourcery.com>
+
+ * breakpoint.c (bpstat_should_step): Only consider software
+ watchpoints that have a location.
+
2009-03-17 Joel Brobecker <brobecker@adacore.com>
Add a target_ops parameter to the to_kill method in struct target_ops.
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 472eda4aea..5a909c8105 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -3304,7 +3304,7 @@ bpstat_should_step (void)
{
struct breakpoint *b;
ALL_BREAKPOINTS (b)
- if (breakpoint_enabled (b) && b->type == bp_watchpoint)
+ if (breakpoint_enabled (b) && b->type == bp_watchpoint && b->loc != NULL)
return 1;
return 0;
}
OpenPOWER on IntegriCloud