From patchwork Mon Jul 25 17:23:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dodji Seketeli X-Patchwork-Id: 106723 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]) by ozlabs.org (Postfix) with SMTP id 01DCFB6F85 for ; Tue, 26 Jul 2011 03:24:24 +1000 (EST) Received: (qmail 2828 invoked by alias); 25 Jul 2011 17:24:19 -0000 Received: (qmail 2817 invoked by uid 22791); 25 Jul 2011 17:24:17 -0000 X-SWARE-Spam-Status: No, hits=-6.4 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 25 Jul 2011 17:24:02 +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 p6PHO1wS022519 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 25 Jul 2011 13:24:01 -0400 Received: from localhost (ovpn-113-35.phx2.redhat.com [10.3.113.35]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p6PHO0m7004994 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 25 Jul 2011 13:24:01 -0400 Received: by localhost (Postfix, from userid 500) id B98A529C043; Mon, 25 Jul 2011 19:23:59 +0200 (CEST) From: Dodji Seketeli To: GCC Patches Cc: Jason Merrill Subject: [PATCH, Obvious cleanup] Remove parm name from declaration X-URL: http://www.redhat.com Date: Mon, 25 Jul 2011 19:23:59 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) MIME-Version: 1.0 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 Hello, I committed this obvious header cleanup patch to trunk. diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h index 202be02..4ac7c4a 100644 --- a/gcc/c-family/c-common.h +++ b/gcc/c-family/c-common.h @@ -985,7 +985,7 @@ extern void warn_for_sign_compare (location_t, enum tree_code resultcode); extern void do_warn_double_promotion (tree, tree, tree, const char *, location_t); -extern void set_underlying_type (tree x); +extern void set_underlying_type (tree); extern VEC(tree,gc) *make_tree_vector (void); extern void release_tree_vector (VEC(tree,gc) *); extern VEC(tree,gc) *make_tree_vector_single (tree);