From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 788 invoked by alias); 24 Feb 2002 03:57: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 642 invoked from network); 24 Feb 2002 03:57:33 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.135.44) by sources.redhat.com with SMTP; 24 Feb 2002 03:57:33 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 64A263D50; Sat, 23 Feb 2002 22:57:31 -0500 (EST) Message-ID: <3C7864AB.1060900@cygnus.com> Date: Sat, 23 Feb 2002 19:57:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.8) Gecko/20020210 X-Accept-Language: en-us MIME-Version: 1.0 To: gdb-patches@sources.redhat.com, binutils@sources.redhat.com, gcc-patches@sources.redhat.com Subject: [patch/rfc] Delete floatformat_arm_ext Content-Type: multipart/mixed; boundary="------------010405040508010805020902" X-SW-Source: 2002-02/txt/msg00659.txt.bz2 This is a multi-part message in MIME format. --------------010405040508010805020902 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 403 Hello, The attached deletes floatformat_arm_ext from include/floatformat.h and libiberty/floatformat.c. As far as I know nothing uses it. GDB stopped using it some time ago. It has been replaced with the far more useful: const struct floatformat floatformat_arm_ext_big; const struct floatformat floatformat_arm_ext_littlebyte_bigword; Any comments? If not I'll commit it in a few days. Andrew --------------010405040508010805020902 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1672 Index: ./include/ChangeLog 2002-02-23 Andrew Cagney * floatformat.h (floatformat_arm_ext): Delete declaration. Index: ./libiberty/ChangeLog 2002-02-23 Andrew Cagney * floatformat.c (floatformat_arm_ext_big): Delete definition. Index: ./include/floatformat.h =================================================================== RCS file: /cvs/src/src/include/floatformat.h,v retrieving revision 1.4 diff -u -r1.4 floatformat.h --- floatformat.h 2001/08/21 00:20:05 1.4 +++ floatformat.h 2002/02/24 03:51:10 @@ -96,7 +96,6 @@ extern const struct floatformat floatformat_i960_ext; extern const struct floatformat floatformat_m88110_ext; extern const struct floatformat floatformat_m88110_harris_ext; -extern const struct floatformat floatformat_arm_ext; /* deprecated. */ extern const struct floatformat floatformat_arm_ext_big; extern const struct floatformat floatformat_arm_ext_littlebyte_bigword; /* IA-64 Floating Point register spilt into memory. */ Index: ./libiberty/floatformat.c =================================================================== RCS file: /cvs/src/src/libiberty/floatformat.c,v retrieving revision 1.5 diff -u -r1.5 floatformat.c --- floatformat.c 2001/08/21 00:20:07 1.5 +++ floatformat.c 2002/02/24 03:51:16 @@ -103,13 +103,6 @@ floatformat_intbit_no, "floatformat_m88110_ext_harris" }; -const struct floatformat floatformat_arm_ext = -{ - /* Bits 1 to 16 are unused. */ - floatformat_big, 96, 0, 17, 15, 0x3fff, 0x7fff, 32, 64, - floatformat_intbit_yes, - "floatformat_arm_ext" -}; const struct floatformat floatformat_arm_ext_big = { /* Bits 1 to 16 are unused. */ --------------010405040508010805020902--