From 3c4797ba74e0b7db0db3e34b606ba9c1d0f2baf7 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 28 Oct 2013 18:34:37 +0000 Subject: breakpoint.c:watchpoints_triggered: simplify a tiny bit. I was reading this, checking the the possible returns, and this particular path confused a tiny little. Above we do: if (!stopped_by_watchpoint) { ... return 0; } so any return after that always return true. Tested on x86_64 Fedora 17. gdb/ 2013-10-28 Pedro Alves * breakpoint.c (watchpoints_triggered) : Hardcode return 1. --- gdb/breakpoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/breakpoint.c') diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index c630b87..e172be1 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -4714,7 +4714,7 @@ watchpoints_triggered (struct target_waitstatus *ws) w->watchpoint_triggered = watch_triggered_unknown; } - return stopped_by_watchpoint; + return 1; } /* The target could report the data address. Mark watchpoints -- cgit v1.1