Skip to content

Commit 7963aa1

Browse files
committed
[lldb] Remove inconsequential radar link (NFC)
The comment after the radar link already explains the issue. There's no additional information in the radar and has been marked as closed by the corresponding code change. This commit removes the link and reflows the comment.
1 parent b96ea7e commit 7963aa1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/source/Target/Target.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2864,12 +2864,12 @@ bool Target::RunStopHooks() {
28642864
if (!any_active_hooks)
28652865
return false;
28662866

2867-
// <rdar://problem/12027563> make sure we check that we are not stopped
2868-
// because of us running a user expression since in that case we do not want
2869-
// to run the stop-hooks. Note, you can't just check whether the last stop
2870-
// was for a User Expression, because breakpoint commands get run before
2871-
// stop hooks, and one of them might have run an expression. You have
2872-
// to ensure you run the stop hooks once per natural stop.
2867+
// Make sure we check that we are not stopped because of us running a user
2868+
// expression since in that case we do not want to run the stop-hooks. Note,
2869+
// you can't just check whether the last stop was for a User Expression,
2870+
// because breakpoint commands get run before stop hooks, and one of them
2871+
// might have run an expression. You have to ensure you run the stop hooks
2872+
// once per natural stop.
28732873
uint32_t last_natural_stop = m_process_sp->GetModIDRef().GetLastNaturalStopID();
28742874
if (last_natural_stop != 0 && m_latest_stop_hook_id == last_natural_stop)
28752875
return false;

0 commit comments

Comments
 (0)