From owner-svn-src-all@FreeBSD.ORG Fri Sep 20 01:18:51 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4E690A5A; Fri, 20 Sep 2013 01:18:51 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C156247A; Fri, 20 Sep 2013 01:18:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8K1Ipxh061271; Fri, 20 Sep 2013 01:18:51 GMT (envelope-from emaste@svn.freebsd.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8K1IpLA061270; Fri, 20 Sep 2013 01:18:51 GMT (envelope-from emaste@svn.freebsd.org) Message-Id: <201309200118.r8K1IpLA061270@svn.freebsd.org> From: Ed Maste Date: Fri, 20 Sep 2013 01:18:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255721 - head/contrib/llvm/tools/lldb/source X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Sep 2013 01:18:51 -0000 Author: emaste Date: Fri Sep 20 01:18:50 2013 New Revision: 255721 URL: http://svnweb.freebsd.org/changeset/base/255721 Log: Disable LLDB OSX ABI plugin Approved by: re (blanket) Modified: head/contrib/llvm/tools/lldb/source/lldb.cpp Modified: head/contrib/llvm/tools/lldb/source/lldb.cpp ============================================================================== --- head/contrib/llvm/tools/lldb/source/lldb.cpp Fri Sep 20 00:46:29 2013 (r255720) +++ head/contrib/llvm/tools/lldb/source/lldb.cpp Fri Sep 20 01:18:50 2013 (r255721) @@ -24,8 +24,6 @@ #include "llvm/ADT/StringRef.h" -#include "Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h" -#include "Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h" #include "Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h" #include "Plugins/Disassembler/llvm/DisassemblerLLVMC.h" #include "Plugins/Instruction/ARM/EmulateInstructionARM.h" @@ -92,8 +90,6 @@ lldb_private::Initialize () Timer::Initialize (); Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__); - ABIMacOSX_i386::Initialize(); - ABIMacOSX_arm::Initialize(); ABISysV_x86_64::Initialize(); DisassemblerLLVMC::Initialize(); ObjectContainerBSDArchive::Initialize(); @@ -172,8 +168,6 @@ lldb_private::Terminate () // Terminate and unload and loaded system or user LLDB plug-ins PluginManager::Terminate(); - ABIMacOSX_i386::Terminate(); - ABIMacOSX_arm::Terminate(); ABISysV_x86_64::Terminate(); DisassemblerLLVMC::Terminate(); ObjectContainerBSDArchive::Terminate();