From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 78696 invoked by alias); 10 Sep 2015 22:11:36 -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 78653 invoked by uid 48); 10 Sep 2015 22:11:32 -0000 From: "fxcoudert at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/67509] [6 regression] FAIL: gfortran.dg/ieee/ieee_7.f90 -O0 execution test Date: Thu, 10 Sep 2015 22:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: fxcoudert at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: 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_status cf_reconfirmed_on everconfirmed Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-09/txt/msg00904.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D67509 Francois-Xavier Coudert changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2015-09-10 Ever confirmed|0 |1 --- Comment #5 from Francois-Xavier Coudert = --- (In reply to Andreas Schwab from comment #4) > 37 307 291 > 3.40282347E+38 1.7976931348623157E+308=20=20 > 8.98846567431157953864652595394512367E+0307 > 1.17549435E-38 2.2250738585072014E-308=20=20 > 2.00416836000897277799610805135016205E-0292 LDBL_MIN is smaller than DBL_MIN? I hadn't considered that=E2=80=A6 Well, since the test's intent is to find impossible ranges, this can easily= be changed. Can you test that the patch below makes it pass for you? Index: ieee_7.f90 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- ieee_7.f90 (revision 227316) +++ ieee_7.f90 (working copy) @@ -33,8 +33,8 @@ end if if (ieee_selected_real_kind(0,0,3) /=3D -5) call abort - if (ieee_selected_real_kind(precision(0._maxreal)+1) /=3D -1) call abort - if (ieee_selected_real_kind(0,range(0._maxreal)+1) /=3D -2) call abort - if (ieee_selected_real_kind(precision(0._maxreal)+1,range(0._maxreal)+1)= /=3D -3) call abort + if (ieee_selected_real_kind(100*precision(0._maxreal)) /=3D -1) call abo= rt + if (ieee_selected_real_kind(0,100*range(0._maxreal)) /=3D -2) call abort + if (ieee_selected_real_kind(100*precision(0._maxreal),100*range(0._maxre= al)) /=3D -3) call abort end >>From gcc-bugs-return-496927-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Thu Sep 10 22:12:59 2015 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 80085 invoked by alias); 10 Sep 2015 22:12:59 -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 Delivered-To: mailing list gcc-bugs@gcc.gnu.org Received: (qmail 80037 invoked by uid 48); 10 Sep 2015 22:12:55 -0000 From: "fxcoudert at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/67531] No IEEE rounding support for powerpc long double type Date: Thu, 10 Sep 2015 22:12:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 6.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: fxcoudert at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: fxcoudert at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on assigned_to short_desc everconfirmed Message-ID: In-Reply-To: References: 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-09/txt/msg00905.txt.bz2 Content-length: 700 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67531 Francois-Xavier Coudert changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2015-09-10 Assignee|unassigned at gcc dot gnu.org |fxcoudert at gcc dot gnu.org Summary|FAIL: |No IEEE rounding support |gfortran.dg/ieee/large_2.f9 |for powerpc long double |0 -O0 execution test |type Ever confirmed|0 |1