From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3273 invoked by alias); 9 Jun 2011 00:19:40 -0000 Received: (qmail 3263 invoked by uid 22791); 9 Jun 2011 00:19:39 -0000 X-SWARE-Spam-Status: No, hits=-2.7 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 09 Jun 2011 00:19:16 +0000 From: "ahn567 at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libfortran/49336] New: ATAN2 values differ from those specified in documentation X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Keywords: X-Bugzilla-Severity: minor X-Bugzilla-Who: ahn567 at gmail 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-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Thu, 09 Jun 2011 00:19:00 -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 X-SW-Source: 2011-06/txt/msg00696.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49336 Summary: ATAN2 values differ from those specified in documentation Product: gcc Version: unknown Status: UNCONFIRMED Severity: minor Priority: P3 Component: libfortran AssignedTo: unassigned@gcc.gnu.org ReportedBy: ahn567@gmail.com The documentation for ATAN2(Y,X) says: "If Y is zero, then the return value is zero if X is positive and pi if X is negative." However, the value returned by ATAN2(-0d0, -1d0) is -pi (not +pi). This is for gfortran 4.4.5. So either the documentation needs fixing (and signed zero explained), or the function ATAN2 should be redefined to return values in (-pi,pi]. ...I'm not sure which is more standard for Fortran.