Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Jul 2017 21:31:51 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-vendor@freebsd.org
Subject:   svn commit: r321700 - in vendor/lldb/dist: include/lldb/API scripts/interface
Message-ID:  <201707292131.v6TLVpwT072680@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Sat Jul 29 21:31:51 2017
New Revision: 321700
URL: https://svnweb.freebsd.org/changeset/base/321700

Log:
  Vendor import of lldb release_50 branch r309439:
  https://llvm.org/svn/llvm-project/lldb/branches/release_50@309439

Modified:
  vendor/lldb/dist/include/lldb/API/SBAttachInfo.h
  vendor/lldb/dist/include/lldb/API/SBBreakpoint.h
  vendor/lldb/dist/include/lldb/API/SBProcess.h
  vendor/lldb/dist/scripts/interface/SBBreakpoint.i
  vendor/lldb/dist/scripts/interface/SBModule.i
  vendor/lldb/dist/scripts/interface/SBSymbol.i

Modified: vendor/lldb/dist/include/lldb/API/SBAttachInfo.h
==============================================================================
--- vendor/lldb/dist/include/lldb/API/SBAttachInfo.h	Sat Jul 29 21:30:31 2017	(r321699)
+++ vendor/lldb/dist/include/lldb/API/SBAttachInfo.h	Sat Jul 29 21:31:51 2017	(r321700)
@@ -162,7 +162,7 @@ class LLDB_API SBAttachInfo { (public)
   /// 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.
   //----------------------------------------------------------------------

Modified: vendor/lldb/dist/include/lldb/API/SBBreakpoint.h
==============================================================================
--- vendor/lldb/dist/include/lldb/API/SBBreakpoint.h	Sat Jul 29 21:30:31 2017	(r321699)
+++ vendor/lldb/dist/include/lldb/API/SBBreakpoint.h	Sat Jul 29 21:31:51 2017	(r321700)
@@ -154,9 +154,9 @@ class LLDB_API SBBreakpointList { (public)
 
   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);
 

Modified: vendor/lldb/dist/include/lldb/API/SBProcess.h
==============================================================================
--- vendor/lldb/dist/include/lldb/API/SBProcess.h	Sat Jul 29 21:30:31 2017	(r321699)
+++ vendor/lldb/dist/include/lldb/API/SBProcess.h	Sat Jul 29 21:31:51 2017	(r321700)
@@ -350,7 +350,7 @@ class LLDB_API SBProcess { (public)
 
   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);
 
   //------------------------------------------------------------------

Modified: vendor/lldb/dist/scripts/interface/SBBreakpoint.i
==============================================================================
--- vendor/lldb/dist/scripts/interface/SBBreakpoint.i	Sat Jul 29 21:30:31 2017	(r321699)
+++ vendor/lldb/dist/scripts/interface/SBBreakpoint.i	Sat Jul 29 21:31:51 2017	(r321700)
@@ -70,7 +70,7 @@ SBBreakpoint supports breakpoint location iteration, f
         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:
         ...

Modified: vendor/lldb/dist/scripts/interface/SBModule.i
==============================================================================
--- vendor/lldb/dist/scripts/interface/SBModule.i	Sat Jul 29 21:30:31 2017	(r321699)
+++ vendor/lldb/dist/scripts/interface/SBModule.i	Sat Jul 29 21:31:51 2017	(r321700)
@@ -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')

Modified: vendor/lldb/dist/scripts/interface/SBSymbol.i
==============================================================================
--- vendor/lldb/dist/scripts/interface/SBSymbol.i	Sat Jul 29 21:30:31 2017	(r321699)
+++ vendor/lldb/dist/scripts/interface/SBSymbol.i	Sat Jul 29 21:31:51 2017	(r321700)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707292131.v6TLVpwT072680>