From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25269 invoked by alias); 26 Jul 2004 22:19:48 -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 25259 invoked from network); 26 Jul 2004 22:19:47 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 26 Jul 2004 22:19:47 -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 i6QMJle3019019 for ; Mon, 26 Jul 2004 18:19:47 -0400 Received: from localhost.redhat.com (porkchop.devel.redhat.com [172.16.58.2]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i6QMJla22940; Mon, 26 Jul 2004 18:19:47 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 2DB5E2B9D; Mon, 26 Jul 2004 18:19:44 -0400 (EDT) Message-ID: <41058380.6050407@gnu.org> Date: Mon, 26 Jul 2004 22:19: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: Joel Brobecker Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA/mips] 128-bit long doubles for N32/N64 References: <20040722154456.GG1289@gnat.com> In-Reply-To: <20040722154456.GG1289@gnat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-07/txt/msg00388.txt.bz2 Does long_double's floatformat need to be set? > Index: mips-tdep.c > =================================================================== > RCS file: /cvs/src/src/gdb/mips-tdep.c,v > retrieving revision 1.301 > diff -u -p -r1.301 mips-tdep.c > --- mips-tdep.c 10 Jul 2004 01:17:52 -0000 1.301 > +++ mips-tdep.c 22 Jul 2004 15:37:12 -0000 > @@ -5689,6 +5689,7 @@ mips_gdbarch_init (struct gdbarch_info i > set_gdbarch_long_bit (gdbarch, 32); > set_gdbarch_ptr_bit (gdbarch, 32); > set_gdbarch_long_long_bit (gdbarch, 64); > + set_gdbarch_long_double_bit (gdbarch, 128); > break; > case MIPS_ABI_N64: > set_gdbarch_push_dummy_call (gdbarch, mips_n32n64_push_dummy_call); > @@ -5699,6 +5700,7 @@ mips_gdbarch_init (struct gdbarch_info i > set_gdbarch_long_bit (gdbarch, 64); > set_gdbarch_ptr_bit (gdbarch, 64); > set_gdbarch_long_long_bit (gdbarch, 64); > + set_gdbarch_long_double_bit (gdbarch, 128); > break; > default: > internal_error (__FILE__, __LINE__, "unknown ABI in switch"); Andrew