Vendor import of lldb release_50 branch r309439:

https://llvm.org/svn/llvm-project/lldb/branches/release_50@309439
This commit is contained in:
Dimitry Andric 2017-07-29 21:31:51 +00:00
parent a884e64959
commit e74d4ea48c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/vendor/lldb/dist/; revision=321700
svn path=/vendor/lldb/lldb-release_50-r311219/; revision=322736; tag=vendor/lldb/lldb-release_50-r311219
6 changed files with 7 additions and 7 deletions

View File

@ -162,7 +162,7 @@ class LLDB_API SBAttachInfo {
/// Get the listener that will be used to receive process events.
///
/// If no listener has been set via a call to
/// SBLaunchInfo::SetListener(), then an invalid SBListener will be
/// SBAttachInfo::SetListener(), then an invalid SBListener will be
/// returned (SBListener::IsValid() will return false). If a listener
/// has been set, then the valid listener object will be returned.
//----------------------------------------------------------------------

View File

@ -154,9 +154,9 @@ class LLDB_API SBBreakpointList {
SBBreakpoint FindBreakpointByID(lldb::break_id_t);
void Append(const SBBreakpoint &sb_file);
void Append(const SBBreakpoint &sb_bkpt);
bool AppendIfUnique(const SBBreakpoint &sb_file);
bool AppendIfUnique(const SBBreakpoint &sb_bkpt);
void AppendByID(lldb::break_id_t id);

View File

@ -350,7 +350,7 @@ class LLDB_API SBProcess {
bool IsInstrumentationRuntimePresent(InstrumentationRuntimeType type);
// Save the state of the process in a core file (or mini dump on Windows).
/// Save the state of the process in a core file (or mini dump on Windows).
lldb::SBError SaveCore(const char *file_name);
//------------------------------------------------------------------

View File

@ -70,7 +70,7 @@ SBBreakpoint supports breakpoint location iteration, for example,
print('breakpoint location load addr: %s' % hex(bl.GetLoadAddress()))
print('breakpoint location condition: %s' % hex(bl.GetCondition()))
and rich comparion methods which allow the API program to use,
and rich comparison methods which allow the API program to use,
if aBreakpoint == bBreakpoint:
...

View File

@ -26,7 +26,7 @@ SBModule supports symbol iteration, for example,
saddr = symbol.GetStartAddress()
eaddr = symbol.GetEndAddress()
and rich comparion methods which allow the API program to use,
and rich comparison methods which allow the API program to use,
if thisModule == thatModule:
print('This module is the same as that module')

View File

@ -11,7 +11,7 @@ namespace lldb {
%feature("docstring",
"Represents the symbol possibly associated with a stack frame.
SBModule contains SBSymbol(s). SBSymbol can also be retrived from SBFrame.
SBModule contains SBSymbol(s). SBSymbol can also be retrieved from SBFrame.
See also SBModule and SBFrame."
) SBSymbol;