From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8892 invoked by alias); 30 Jul 2004 13:26:37 -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 8885 invoked from network); 30 Jul 2004 13:26:36 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 30 Jul 2004 13:26:36 -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 i6UDQae3024490 for ; Fri, 30 Jul 2004 09:26:36 -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 i6UDQaa32389; Fri, 30 Jul 2004 09:26:36 -0400 Received: from gnu.org (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 6BC142B9D; Fri, 30 Jul 2004 09:26:32 -0400 (EDT) Message-ID: <410A4C88.3080904@gnu.org> Date: Fri, 30 Jul 2004 13:26: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: Andreas Schwab Cc: gdb-patches@sources.redhat.com Subject: Re: [patch/rfc] Add host's floatformat References: <40939DD4.3000706@gnu.org> <41095190.7020508@gnu.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2004-07/txt/msg00493.txt.bz2 > Andrew Cagney writes: > > >>> * configure.host (gdb_host_float_format, gdb_host_double_format) >>> (gdb_host_long_double_format): Set according to the host. > > > 2004-07-30 Andreas Schwab > > * configure.host: Set host floatformat for m68k. > > --- gdb/configure.host 30 Jul 2004 10:54:44 +0200 1.81 > +++ gdb/configure.host 30 Jul 2004 10:57:33 +0200 > @@ -165,6 +165,11 @@ hppa*-*-linux*) > gdb_host_double_format="&floatformat_ieee_double_big" > gdb_host_long_double_format="&floatformat_ieee_double_big" > ;; > +m68*-*-*) > + gdb_host_float_format="&floatformat_ieee_single_big" > + gdb_host_double_format="&floatformat_ieee_double_big" > + gdb_host_long_double_format="&floatformat_m68881_ext" > + ;; > *) > gdb_host_float_format=0 > gdb_host_double_format=0 > > Andreas. Oops, I had that in a working draft but it got lost somewhere. Andrew