From owner-svn-src-vendor@freebsd.org Sat Jul 29 21:31:53 2017 Return-Path: Delivered-To: svn-src-vendor@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A660DCBAEF; Sat, 29 Jul 2017 21:31:53 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3635E7D923; Sat, 29 Jul 2017 21:31:53 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6TLVqd9072687; Sat, 29 Jul 2017 21:31:52 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6TLVpwT072680; Sat, 29 Jul 2017 21:31:51 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201707292131.v6TLVpwT072680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Sat, 29 Jul 2017 21:31:51 +0000 (UTC) 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 X-SVN-Group: vendor X-SVN-Commit-Author: dim X-SVN-Commit-Paths: in vendor/lldb/dist: include/lldb/API scripts/interface X-SVN-Commit-Revision: 321700 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-vendor@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the vendor work area tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Jul 2017 21:31:53 -0000 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;