From patchwork Wed Jan 22 17:09:46 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 313335 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 6C22B2C00A5 for ; Thu, 23 Jan 2014 04:09:56 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:mime-version:content-type; q=dns; s= default; b=uEkPcjGTRVbURnFZ1rfIjPeIpgoG5Q5tdK6DPiufJF0tCNaiT+2q0 WVugLPod6Yu4aUIBtR+QuEhuT20SLzQeuFwqylLM180iT4kbPR7jze7hnrzDoqoJ 2B+Kx4ssamA7DPHG1WxMhPPdOboIgrykDLo/7Dn0o79DPvSeJBImxQ= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:mime-version:content-type; s= default; bh=aQYkTyDu4F09Zofqtt7SwZT4W20=; b=TzLUvzDN0946fuefuuhV qBj/BxP7hDgjZdJVF9YFmgzfKmoFDGTQ8Tn0FkMpzavUA2Kn/qfBGRnkuTduJaTy jfuTLw35Ll3WmE0ok5T/iOQBWbtvE9zndSmOYELUiq/+k+u6BAkFuGlCg4zDGmVR KgXitzlIyw1qMP4GEO/JthE= Received: (qmail 14050 invoked by alias); 22 Jan 2014 17:09:50 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 14041 invoked by uid 89); 22 Jan 2014 17:09:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, KAM_STOCKGEN, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 22 Jan 2014 17:09:49 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s0MH9m09031764 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 22 Jan 2014 12:09:48 -0500 Received: from barimba (ovpn-113-85.phx2.redhat.com [10.3.113.85]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s0MH9kmx027479 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Wed, 22 Jan 2014 12:09:47 -0500 From: Tom Tromey To: gcc-patches@gcc.gnu.org Subject: FYI: remove two stray uses of PARAMS Date: Wed, 22 Jan 2014 10:09:46 -0700 Message-ID: <87zjmo7xk5.fsf@fleche.redhat.com> MIME-Version: 1.0 Jan-Benedict Glaw pointed out to me that my recent ansidecl.h change caused a build failure for CR16. I had missed a couple spots where PARAMS was still used in the gcc tree. I'm checking in this patch as obvious. Tom 2014-01-22 Tom Tromey * config/i386/i386-interix.h (i386_pe_unique_section): Don't use PARAMS. * config/cr16/cr16-protos.h (notice_update_cc): Don't use PARAMS. Index: config/cr16/cr16-protos.h =================================================================== --- config/cr16/cr16-protos.h (revision 206930) +++ config/cr16/cr16-protos.h (working copy) @@ -68,7 +68,7 @@ CR16_ABSOLUTE }; -extern void notice_update_cc PARAMS ((rtx)); +extern void notice_update_cc (rtx); extern int cr16_operand_bit_pos (int val, int bitval); extern void cr16_decompose_const (rtx x, int *code, enum data_model_type *data, Index: config/i386/i386-interix.h =================================================================== --- config/i386/i386-interix.h (revision 206930) +++ config/i386/i386-interix.h (working copy) @@ -195,7 +195,7 @@ */ #define MULTIPLE_SYMBOL_SPACES 1 -extern void i386_pe_unique_section PARAMS ((tree, int)); +extern void i386_pe_unique_section (tree, int); #define TARGET_ASM_UNIQUE_SECTION i386_pe_unique_section /* Switch into a generic section. */