From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32498 invoked by alias); 2 Aug 2009 19:35:00 -0000 Received: (qmail 32350 invoked by uid 22791); 2 Aug 2009 19:34:58 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_21 X-Spam-Check-By: sourceware.org Received: from hiauly1.hia.nrc.ca (HELO hiauly1.hia.nrc.ca) (132.246.100.193) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 02 Aug 2009 19:34:52 +0000 Received: by hiauly1.hia.nrc.ca (Postfix, from userid 1000) id 4B3594E09; Sun, 2 Aug 2009 15:34:48 -0400 (EDT) Subject: Re: [committed] Fix previous change to pa.c To: dave@hiauly1.hia.nrc.ca (John David Anglin) Date: Sun, 02 Aug 2009 19:35:00 -0000 From: "John David Anglin" Cc: gcc-patches@gcc.gnu.org In-Reply-To: from "John David Anglin" at Aug 1, 2009 11:02:56 pm MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20090802193449.4B3594E09@hiauly1.hia.nrc.ca> Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2009-08/txt/msg00064.txt.bz2 > The enclosed fixes compile errors instroduced in the previous change > to the file. Tested on hppa-unknown-linux-gnu. Committed to trunk. I was a bit too quick. This cleans up the declaration. Tested on hppa-unknown-linux-gnu with compile check. Committed to trunk. Dave -- J. David Anglin dave.anglin@nrc-cnrc.gc.ca National Research Council of Canada (613) 990-0752 (FAX: 952-6602) 2009-08-02 John David Anglin * pa.c (pa_promote_function_mode): Remove ATTRIBUTE_UNUSED from declaration arguments. Index: config/pa/pa.c =================================================================== --- config/pa/pa.c (revision 150354) +++ config/pa/pa.c (working copy) @@ -159,11 +159,9 @@ enum machine_mode, secondary_reload_info *); static void pa_extra_live_on_entry (bitmap); -static enum machine_mode pa_promote_function_mode (const_tree ATTRIBUTE_UNUSED, - enum machine_mode, - int * ATTRIBUTE_UNUSED, - const_tree ATTRIBUTE_UNUSED, - int for_return); +static enum machine_mode pa_promote_function_mode (const_tree, + enum machine_mode, int *, + const_tree, int); /* The following extra sections are only used for SOM. */ static GTY(()) section *som_readonly_data_section;