From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 128722 invoked by alias); 13 Apr 2015 23:33:40 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 128684 invoked by uid 48); 13 Apr 2015 23:33:37 -0000 From: "bugs at dhbailey dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/65757] New: gfortran gives incorrect result for anint with real*16 argument Date: Mon, 13 Apr 2015 23:33:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: bugs at dhbailey dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-04/txt/msg01067.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65757 Bug ID: 65757 Summary: gfortran gives incorrect result for anint with real*16 argument Product: gcc Version: 4.9.0 Status: UNCONFIRMED Severity: major Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: bugs at dhbailey dot com gfortran gives an incorrect result for the anint (nearest whole number) function for certain real*16 arguments. Here is a simple example: program anintbug implicit none real (kind (0.q0)) q1, q2, q3 q1 = 233181505644407.99996948242187500000q0 q2 = anint (q1) q3 = 233181505644408.00000000000000000000q0 write (6, '(f50.25)') q1, q2, q3 write (6, '(z35)') q1, q2, q3 stop end When compiled with "gfortran anintbug.f90", this program produces the following output. The second result should equal the third result, but does not. 233181505644407.9999694824218750000000000 233181505644407.9999694824218750000000000 233181505644408.0000000000000000000000000 402EA827999FCEEFFFFC000000000000 402EA827999FCEEFFFFC000000000000 402EA827999FCEF00000000000000000