From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 127438 invoked by alias); 1 Jul 2015 21:42:19 -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 127419 invoked by uid 89); 1 Jul 2015 21:42:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: troutmask.apl.washington.edu Received: from troutmask.apl.washington.edu (HELO troutmask.apl.washington.edu) (128.95.76.21) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 01 Jul 2015 21:42:18 +0000 Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.14.9/8.14.9) with ESMTP id t61LgG0m020703 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 1 Jul 2015 14:42:16 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.9/8.14.9/Submit) id t61LgGQs020702; Wed, 1 Jul 2015 14:42:16 -0700 (PDT) (envelope-from sgk) Date: Wed, 01 Jul 2015 21:42:00 -0000 From: Steve Kargl To: Gerald Pfeifer Cc: Thomas Koenig , gcc-patches@gcc.gnu.org, fortran@gcc.gnu.org Subject: Re: [patch, wwwdocs, committed] Document -Winteger-division for Fortran Message-ID: <20150701214216.GA20552@troutmask.apl.washington.edu> References: <55941D68.9060902@netcologne.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-SW-Source: 2015-07/txt/msg00095.txt.bz2 On Wed, Jul 01, 2015 at 11:39:09PM +0200, Gerald Pfeifer wrote: > On Wed, 1 Jul 2015, Thomas Koenig wrote: > > I just committed the following patch to the WWW docs. > > Thanks. In the description, are the integers constants truncated > or (the result of) the division? > The result is truncated. real x x = 4/5 end is truncated to 'x = 0'. The remainder of 4 is tossed. -- Steve