From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 48390 invoked by alias); 23 Apr 2015 19:11:47 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 48380 invoked by uid 89); 23 Apr 2015 19:11:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 23 Apr 2015 19:11:46 +0000 Received: from svr-orw-fem-05.mgc.mentorg.com ([147.34.97.43]) by relay1.mentorg.com with esmtp id 1YlMXG-0001UM-SN from Sandra_Loosemore@mentor.com ; Thu, 23 Apr 2015 12:11:42 -0700 Received: from [IPv6:::1] (147.34.91.1) by svr-orw-fem-05.mgc.mentorg.com (147.34.97.43) with Microsoft SMTP Server id 14.3.224.2; Thu, 23 Apr 2015 12:11:42 -0700 Message-ID: <553943B5.102@codesourcery.com> Date: Thu, 23 Apr 2015 19:11:00 -0000 From: Sandra Loosemore User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: , Yao Qi Subject: Re: [patch 3/3, nios2] fixes for new implementation of signal handler trampolines References: <55393E8C.8090804@codesourcery.com> <5539412B.2020101@codesourcery.com> In-Reply-To: <5539412B.2020101@codesourcery.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-04/txt/msg00908.txt.bz2 On 04/23/2015 12:59 PM, Sandra Loosemore wrote: > @@ -204,14 +251,8 @@ extern initialize_file_ftype _initialize_nios2_linux_tdep; > void > _initialize_nios2_linux_tdep (void) > { > - > - const struct bfd_arch_info *arch_info; > - > - for (arch_info = bfd_lookup_arch (bfd_arch_nios2, 0); > - arch_info != NULL; > - arch_info = arch_info->next) > - gdbarch_register_osabi (bfd_arch_nios2, arch_info->mach, > - GDB_OSABI_LINUX, nios2_linux_init_abi); > + gdbarch_register_osabi (bfd_arch_nios2, 0, GDB_OSABI_LINUX, > + nios2_linux_init_abi); > > initialize_tdesc_nios2_linux (); > } Ooops, please ignore this patch hunk -- I generated this patch against the wrong base after reverting a change that turned out to be unnecessary on mainline head. -Sandra