[Lldb-commits] [lldb] r372763 - [NFC] Fix typo in the "kind" description for the software single-step breakpoint

Tatyana Krasnukha via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 24 07:24:52 PDT 2019


Author: tkrasnukha
Date: Tue Sep 24 07:24:52 2019
New Revision: 372763

URL: http://llvm.org/viewvc/llvm-project?rev=372763&view=rev
Log:
[NFC] Fix typo in the "kind" description for the software single-step breakpoint

Modified:
    lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp

Modified: lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp?rev=372763&r1=372762&r2=372763&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp (original)
+++ lldb/trunk/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp Tue Sep 24 07:24:52 2019
@@ -977,7 +977,7 @@ Status ProcessFreeBSD::SetSoftwareSingle
   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);




More information about the lldb-commits mailing list