From patchwork Wed Jul 1 17:03:36 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Koenig X-Patchwork-Id: 490252 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 D350E1402AA for ; Thu, 2 Jul 2015 03:03:53 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=NoGuqTUs; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; q=dns; s=default; b=dneM6vPNp8Jhkz4j8v7a0noJdWCez0regmZk04jEkqL vgQhm52QrP4VqT5RaFY+ZWuQXHjd+dcCO90Sn7KlWlQSAj4xvFwmkeqYscAK2Bsj XphCZPL/RYMivHdOoZ9EUEMO5sFL1USRgejlMMg9uTqnhmjnZTJzveNkABWSXvqw = 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 :message-id:date:from:mime-version:to:cc:subject:content-type; s=default; bh=raycka42OCFFydG225ZwU0ljAn8=; b=NoGuqTUsud6IDLjKy iGBjSwfJbR8V1qTaVlzMtZ/SmdvkdP5BZ6Z1Q+ZPWWI9SRdKr8bkQhEXYkzmKHB5 +w7yockCpvJklVd12fBPDVzDFXrXbXVlc3G+duNcHm1tVihTKBp8dLtXTdqGtol+ mVSqON1SSBHCdihM2mmgkMc5OY= Received: (qmail 48744 invoked by alias); 1 Jul 2015 17:03:45 -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 48727 invoked by uid 89); 1 Jul 2015 17:03:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.9 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPAM_BODY autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: cc-smtpout1.netcologne.de Received: from cc-smtpout1.netcologne.de (HELO cc-smtpout1.netcologne.de) (89.1.8.211) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 01 Jul 2015 17:03:43 +0000 Received: from cc-smtpin3.netcologne.de (cc-smtpin3.netcologne.de [89.1.8.203]) by cc-smtpout1.netcologne.de (Postfix) with ESMTP id 469FA125F8; Wed, 1 Jul 2015 19:03:39 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by cc-smtpin3.netcologne.de (Postfix) with ESMTP id 40CCC11E02; Wed, 1 Jul 2015 19:03:39 +0200 (CEST) Received: from [78.35.148.73] (helo=cc-smtpin3.netcologne.de) by localhost with ESMTP (eXpurgate 4.0.7) (envelope-from ) id 55941d6b-0b88-7f0000012729-7f000001b0df-1 for ; Wed, 01 Jul 2015 19:03:39 +0200 Received: from [192.168.178.20] (xdsl-78-35-148-73.netcologne.de [78.35.148.73]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by cc-smtpin3.netcologne.de (Postfix) with ESMTPSA; Wed, 1 Jul 2015 19:03:36 +0200 (CEST) Message-ID: <55941D68.9060902@netcologne.de> Date: Wed, 01 Jul 2015 19:03:36 +0200 From: Thomas Koenig User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: gcc-patches , Gerald Pfeifer's automatic GCC web pages tester CC: "fortran@gcc.gnu.org" Subject: [patch, wwwdocs, committed] Document -Winteger-division for Fortran Hello world, I just committed the following patch to the WWW docs. An error was reported by Gerald's script, but that seems to have been spurious. At least, there was no error on revalidation. Regards Thomas 2015-07-01 Thomas Koenig * gcc-6/changes.html: Document -Winteger-division for Fortran. Index: changes.html =================================================================== RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-6/changes.html,v retrieving revision 1.12 diff -r1.12 changes.html 67a68,70 >
  • The -Winteger-division option has been added, which > warns about divisions of integer constants which are truncated. > This option is included in -Wall by default.