From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28250 invoked by alias); 30 May 2003 03:44:45 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 28236 invoked from network); 30 May 2003 03:44:44 -0000 Received: from unknown (HELO zenia.red-bean.com) (12.223.225.216) by sources.redhat.com with SMTP; 30 May 2003 03:44:44 -0000 Received: from zenia.red-bean.com (localhost.localdomain [127.0.0.1]) by zenia.red-bean.com (8.12.5/8.12.5) with ESMTP id h4U3rdFq006960; Thu, 29 May 2003 22:53:39 -0500 Received: (from jimb@localhost) by zenia.red-bean.com (8.12.5/8.12.5/Submit) id h4U3rcRR006956; Thu, 29 May 2003 22:53:38 -0500 To: Kevin Buettner Cc: gdb-patches@sources.redhat.com Subject: Re: RFA: use gdbarch for solib stuff on PPC Linux References: <1030530012021.ZM3245@localhost.localdomain> From: Jim Blandy Date: Fri, 30 May 2003 03:44:00 -0000 In-Reply-To: <1030530012021.ZM3245@localhost.localdomain> Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-05/txt/msg00565.txt.bz2 I've committed this. Thanks. Kevin Buettner writes: > On May 29, 7:52pm, Jim Blandy wrote: > > > The #undefs are ugly, but it seems like that's what other targets are > > doing (like config/arm/tm-linux.h). Since config/tm-linux.h is used > > so widely, simply removing the #inclusion of config/tm-svr4.h would be > > hard. Perhaps if we convert the targets that use config/tm-svr4.h > > incrementally, with #undefs, we could eventually reach the point where > > nobody is using it. > > > > 2003-05-29 Jim Blandy > > > > Use gdbarch methods for solib stuff on PowerPC Linux. > > * config/powerpc/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, > > SKIP_TRAMPOLINE_CODE): #undef these, so the gdbarch methods will > > show through. > > * ppc-linux-tdep.c (ppc_linux_init_abi): Register > > IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE methods here, > > giving the same effect as the #definitions above. > > Okay. > > Kevin