From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32390 invoked by alias); 30 May 2014 09:20:30 -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 32369 invoked by uid 89); 30 May 2014 09:20:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients 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; Fri, 30 May 2014 09:20:29 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s4U9KRc7002506 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 30 May 2014 05:20:27 -0400 Received: from tucnak.zalov.cz (ovpn-116-17.ams2.redhat.com [10.36.116.17]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s4U9KOPO017066 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 30 May 2014 05:20:25 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.8/8.14.7) with ESMTP id s4U9KL5b002604; Fri, 30 May 2014 11:20:22 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.8/8.14.8/Submit) id s4U9KKff002603; Fri, 30 May 2014 11:20:20 +0200 Date: Fri, 30 May 2014 09:20:00 -0000 From: Jakub Jelinek To: VandeVondele Joost Cc: "fortran@gcc.gnu.org" , "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH, Fortran] PR61234: -Wuse-no-only Message-ID: <20140530092020.GW10386@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <908103EDB4893A42920B21D3568BFD930CC51688@MBX23.d.ethz.ch> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <908103EDB4893A42920B21D3568BFD930CC51688@MBX23.d.ethz.ch> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2014-05/txt/msg02588.txt.bz2 On Fri, May 30, 2014 at 08:03:45AM +0000, VandeVondele Joost wrote: > +@item -Wuse-no-only > +@opindex @code{Wuse-no-only} > +@cindex warnings, use statements > +@cindex intrinsic > +Warn if a use statement has no only qualifier and thus implicitly imports > +all public entities of the used module. > +This option is implied by @option{-Wall}. I think it is really weird if a coding style warning is included in -Wall. Jakub