From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22351 invoked by alias); 5 Jan 2005 21:51:09 -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 22201 invoked from network); 5 Jan 2005 21:50:58 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 5 Jan 2005 21:50:58 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j05LovbK013797 for ; Wed, 5 Jan 2005 16:50:58 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j05Loqr27905; Wed, 5 Jan 2005 16:50:52 -0500 Received: from localhost.localdomain (vpn50-74.rdu.redhat.com [172.16.50.74]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id j05Loq46001480; Wed, 5 Jan 2005 16:50:52 -0500 Received: from ironwood.lan (ironwood.lan [192.168.64.8]) by localhost.localdomain (8.12.11/8.12.10) with ESMTP id j05LokGH026307; Wed, 5 Jan 2005 14:50:46 -0700 Date: Wed, 05 Jan 2005 21:51:00 -0000 From: Kevin Buettner To: Andreas Schwab Cc: gdb-patches@sources.redhat.com Subject: Re: Remove ia64-*-aix* support Message-ID: <20050105145045.48a27645@ironwood.lan> In-Reply-To: References: <200501042304.j04N4drG001942@elgar.sibelius.xs4all.nl> <20050105100855.138ee6c9@ironwood.lan> Organization: Red Hat Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2005-01/txt/msg00032.txt.bz2 On Wed, 05 Jan 2005 22:19:12 +0100 Andreas Schwab wrote: > Here is a followup patch to separate the ia64-linux parts out of > ia64-tdep.c and making it a proper OS ABI variant. Tested on ia64-linux, > no regressions. > > Andreas. > > 2005-01-05 Andreas Schwab > > * ia64-tdep.c: Include "osabi.h". > (native_find_global_pointer): Delete. > (ia64_find_global_pointer): Renamed from > generic_elf_find_global_pointer. > (FIND_GLOBAL_POINTER): Delete. Change all users to call > ia64_find_global_pointer instead. > (ia64_gdbarch_init): Call gdbarch_init_osabi. Remove references > to ia64_linux_sigcontext_register_address and > ia64_linux_write_pc. Don't set tdep->find_global_pointer. > (_initialize_ia64_tdep): Call gdbarch_register instead of > deprecated register_gdbarch_init. > (struct gdbarch_tdep): Remove find_global_pointer field and move > to ... > * ia64-tdep.h (struct gdbarch_tdep): ... here. > (ia64_linux_sigcontext_register_address): Remove declaration. > (ia64_linux_getunwind_table): Likewise. > (ia64_linux_write_pc): Likewise. > * ia64-linux-tdep.c: Include "osabi.h". > (ia64_linux_sigcontext_register_address): Make static. > (ia64_linux_write_pc): Likewise. > (ia64_linux_init_abi): New. > (_initialize_ia64_linux_tdep): New. > * Makefile.in (ia64-tdep.o, ia64-linux-tdep.o): Depend on > $(osabi_h). Okay. Thanks! Kevin