From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 77265 invoked by alias); 28 Apr 2015 23:53:26 -0000 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 Received: (qmail 77251 invoked by uid 89); 28 Apr 2015 23:53:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham 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 (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 28 Apr 2015 23:53:24 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t3SNrN8Z002793 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Tue, 28 Apr 2015 19:53:23 -0400 Received: from localhost.localdomain (ovpn-113-143.phx2.redhat.com [10.3.113.143]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t3SNrNrk023662; Tue, 28 Apr 2015 19:53:23 -0400 Message-ID: <55401D73.6030104@redhat.com> Date: Wed, 29 Apr 2015 00:10:00 -0000 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: David Malcolm , gcc-patches@gcc.gnu.org Subject: Re: [PATCH 2/3] Fix spurious semicolons References: <5536936F.8090004@gmail.com> <1430265776-8157-1-git-send-email-dmalcolm@redhat.com> <1430265776-8157-2-git-send-email-dmalcolm@redhat.com> In-Reply-To: <1430265776-8157-2-git-send-email-dmalcolm@redhat.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg01810.txt.bz2 On 04/28/2015 06:02 PM, David Malcolm wrote: > An earlier version of the -Wmisleading-indentation patch issued > warnings for spurious trailing semicolons guarded by a conditional. > > Although the latest version of -Wmisleading-indentation no longer > warns about these, I fixed the ones that were reported, thusly. > > gcc/ChangeLog: > * builtins.c (fold_builtin_1): Remove spurious second > semicolon. > * cgraph.h (symtab_node::get_availability): Likewise. > * opts.c (common_handle_option): Remove spurious second semicolon. > * tree-ssa-loop-ivopts.c (extract_cond_operands): Likewise. > * tree-ssa-loop-niter.c (derive_constant_upper_bound_ops): Likewise. > > gcc/cp/ChangeLog: > * cp-tree.h (ARGUMENT_PACK_SELECT_ARG): Remove spurious > trailing semicolon. > > gcc/fortran/ChangeLog: > * options.c (gfc_init_options): Remove spurious second > semicolon. > * trans-stmt.c (gfc_trans_allocate): Likewise. This falls under the obvious rule :-) Please install. jeff