diff options
| author | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-09-24 14:24:52 +0000 |
|---|---|---|
| committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2019-09-24 14:24:52 +0000 |
| commit | 5a4355324e1bb5cf6acc5f8b54349184b98eb60a (patch) | |
| tree | 6219b3e9197f03e05c4b8c83deb0a7684e57ea03 | |
| parent | 1a219aa8df9b4f58e6dbf7beadf1316eb3c5b2f8 (diff) | |
| download | bcm5719-llvm-5a4355324e1bb5cf6acc5f8b54349184b98eb60a.tar.gz bcm5719-llvm-5a4355324e1bb5cf6acc5f8b54349184b98eb60a.zip | |
[NFC] Fix typo in the "kind" description for the software single-step breakpoint
llvm-svn: 372763
| -rw-r--r-- | lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp b/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp index 6186e1fb83f..32e3320150f 100644 --- a/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp +++ b/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp @@ -977,7 +977,7 @@ Status ProcessFreeBSD::SetSoftwareSingleStepBreakpoint(lldb::tid_t tid, Breakpoint *const sw_step_break = m_process->GetTarget().CreateBreakpoint(addr, true, false).get(); sw_step_break->SetCallback(SingleStepBreakpointHit, this, true); - sw_step_break->SetBreakpointKind("software-signle-step"); + sw_step_break->SetBreakpointKind("software-single-step"); LLDB_LOGF(log, "ProcessFreeBSD::%s addr = 0x%" PRIx64 " -- SUCCESS", __FUNCTION__, addr); |

