From patchwork Sun Oct 21 11:04:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Koenig X-Patchwork-Id: 192990 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 48A722C0087 for ; Sun, 21 Oct 2012 22:04:31 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1351422272; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=u8BWxHx ZYW3WjwRumP6j4DJ5vOo=; b=MoR9OKWm6bBAVKdN1Fuwj2wqpMw6fwumyeLiG3R 0+3qXj13XHLblB5hiG5YBg75EHUJI/OzJBFOwoqbOeP5OA0eZEbnlwzrLAOS13s5 49kmWMuKKkfyqas9+H5nl1lO3tPMHPdbDhRFdVvZZ4ZTrq21+b4InZ3dPyyaB/XY TiPY= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Message-ID:Date:From:User-Agent:MIME-Version:To:Subject:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=lz14SBQK3ylxdErWsIO2dhFI1e7KeRpnPzwrWWsW4Hhvu9pEzS2kSvSva9OgjZ 2St/LxjPdUD9KnjgyoxMdBmJPUM7TjjnJbUqqOGToISTcP4qOj3imdjIl9dA56o7 QH3SD6IY8TlndgKMMoXyesNuMbsotem+6hhY+4Dapz06k=; Received: (qmail 18094 invoked by alias); 21 Oct 2012 11:04:23 -0000 Received: (qmail 18077 invoked by uid 22791); 21 Oct 2012 11:04:23 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_NO, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from cc-smtpout3.netcologne.de (HELO cc-smtpout3.netcologne.de) (89.1.8.213) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 21 Oct 2012 11:04:17 +0000 Received: from cc-smtpin3.netcologne.de (cc-smtpin3.netcologne.de [89.1.8.203]) by cc-smtpout3.netcologne.de (Postfix) with ESMTP id B912F1279C; Sun, 21 Oct 2012 13:04:15 +0200 (CEST) Received: from [192.168.0.106] (xdsl-78-35-147-82.netcologne.de [78.35.147.82]) by cc-smtpin3.netcologne.de (Postfix) with ESMTPSA id 680CD11DA8; Sun, 21 Oct 2012 13:04:13 +0200 (CEST) Message-ID: <5083D6AC.2070509@netcologne.de> Date: Sun, 21 Oct 2012 13:04:12 +0200 From: Thomas Koenig User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: "fortran@gcc.gnu.org" , gerald@pfeifer.com, gcc-patches Subject: [patch, wwwdocs, committed] Fortran changes for 4.8 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 world, I have committed the attached patch as obvious after checking with "tidy". Best regards Thomas 2012-10-21 Thomas Koenig * gcc-4.8/changes.html: Document that -Wc-binding-type is enabled by -Wall. Document that -Wcompare-reals is enabled by -Wextra. Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.8/changes.html,v retrieving revision 1.47 diff -u -r1.47 changes.html --- changes.html 16 Oct 2012 22:48:07 -0000 1.47 +++ changes.html 21 Oct 2012 10:56:28 -0000 @@ -149,7 +149,8 @@ particular, if the variable has been declared using an intrinsic type with default kind instead of using a kind parameter defined for C interoperability in the intrinsic ISO_C_Binding module. Before, - the warning was always printed. + the warning was always printed. The -Wc-binding-type flag + is enabled by -Wall.
  • The @@ -168,8 +169,8 @@ warnings are issued when comparing REAL or COMPLEX types for equality and inequality; consider replacing a == b by abs(a−b) < eps with a suitable - eps. The -Wcompare-reals flag is enabled by - -Wall.
  • + eps. The -Wcompare-reals flag is enabled by + -Wextra.
  • The