From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3576 invoked by alias); 24 Apr 2004 00:03:05 -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 3567 invoked from network); 24 Apr 2004 00:03:04 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 24 Apr 2004 00:03:04 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i3O034KG001520 for ; Fri, 23 Apr 2004 20:03:04 -0400 Received: from localhost.redhat.com (to-dhcp51.toronto.redhat.com [172.16.14.151]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i3O034p30949 for ; Fri, 23 Apr 2004 20:03:04 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 6E3E92BA7; Fri, 23 Apr 2004 12:31:02 -0400 (EDT) Message-ID: <408944C6.8010601@gnu.org> Date: Sat, 24 Apr 2004 00:03:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-GB; rv:1.4.1) Gecko/20040217 MIME-Version: 1.0 To: Jerome Guitton , Kevin Buettner Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA] powerpc - extract a float return value References: <20040420180348.GA23715@act-europe.fr> <20040421105415.12577df1@saguaro> <20040423143821.GA27351@act-europe.fr> In-Reply-To: <20040423143821.GA27351@act-europe.fr> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-04/txt/msg00592.txt.bz2 > OK, thanks. Tested on the ppc-elf simulator, on a x86-linux host. > No regression. FYI, ppc-elf doesn't use rs6000_extract_return_value: if (sysv_abi && wordsize == 8) set_gdbarch_return_value (gdbarch, ppc64_sysv_abi_return_value); else if (sysv_abi && wordsize == 4) set_gdbarch_return_value (gdbarch, ppc_sysv_abi_return_value); else { set_gdbarch_deprecated_extract_return_value (gdbarch, rs6000_extract_return_value); set_gdbarch_deprecated_store_return_value (gdbarch, rs6000_store_return_value); } so those test results are not relevant :-( Kevin, This AIX code is long overdue for an update, now is the time to do it. Even if it means accepting just hand test results. Andrew