diff options
| author | Yao Qi <yao.qi@linaro.org> | 2016-03-18 14:28:14 +0000 |
|---|---|---|
| committer | Yao Qi <yao.qi@linaro.org> | 2016-03-18 14:28:14 +0000 |
| commit | 80aea927cc7bf97a2bc22e1fb2111c52be295e8b (patch) | |
| tree | 29f213602730351f84c2f92652d6095a8947cc41 /gdb/gdbserver/linux-low.c | |
| parent | 78a2bc3c1635767cb44cd86261047f2e2f9a2d2e (diff) | |
| download | binutils-80aea927cc7bf97a2bc22e1fb2111c52be295e8b.zip binutils-80aea927cc7bf97a2bc22e1fb2111c52be295e8b.tar.gz binutils-80aea927cc7bf97a2bc22e1fb2111c52be295e8b.tar.bz2 | |
Remove redundant WIFSTOPPED check
WIFSTOPPED is checked linux_wstatus_maybe_breakpoint, so WIFSTOPPED
in "WIFSTOPPED (wstat) && linux_wstatus_maybe_breakpoint (wstat)"
is redundant. This patch removes WIFSTOPPED check.
gdb/gdbserver:
2016-03-18 Yao Qi <yao.qi@linaro.org>
* linux-low.c (linux_low_filter_event): Remove redundant
WIFSTOPPED check together with linux_wstatus_maybe_breakpoint.
Diffstat (limited to 'gdb/gdbserver/linux-low.c')
| -rw-r--r-- | gdb/gdbserver/linux-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index c008847..183cdd9 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -2443,7 +2443,7 @@ linux_low_filter_event (int lwpid, int wstat) } } - if (WIFSTOPPED (wstat) && linux_wstatus_maybe_breakpoint (wstat)) + if (linux_wstatus_maybe_breakpoint (wstat)) { if (save_stop_reason (child)) have_stop_pc = 1; |
