PR remote/20655 - small fix in handle_tracepoint_bkpts
handle_tracepoint_bkpts has two parallel "if"s. This changes the second one to check ipa_error_tracepoint, which seems to be what was intended. 2016-10-05 Tom Tromey <tom@tromey.com> PR remote/20655: * tracepoint.c (handle_tracepoint_bkpts): Check ipa_error_tracepoint, not ipa_stopping_tracepoint.
This commit is contained in:
parent
e742d386c4
commit
39b5a3b9b3
@ -1,3 +1,9 @@
|
||||
2016-10-05 Tom Tromey <tom@tromey.com>
|
||||
|
||||
PR remote/20655:
|
||||
* tracepoint.c (handle_tracepoint_bkpts): Check
|
||||
ipa_error_tracepoint, not ipa_stopping_tracepoint.
|
||||
|
||||
2016-10-05 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* configure.srv: Update the path of arm-*.xml files.
|
||||
|
@ -4534,7 +4534,7 @@ handle_tracepoint_bkpts (struct thread_info *tinfo, CORE_ADDR stop_pc)
|
||||
trace_debug ("lib stopped due to full buffer.");
|
||||
if (ipa_stopping_tracepoint)
|
||||
trace_debug ("lib stopped due to tpoint");
|
||||
if (ipa_stopping_tracepoint)
|
||||
if (ipa_error_tracepoint)
|
||||
trace_debug ("lib stopped due to error");
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user