From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 92351 invoked by alias); 17 Mar 2015 21:16:52 -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 92258 invoked by uid 48); 17 Mar 2015 21:16:46 -0000 From: "anlauf at gmx dot de" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/64432] [5 Regression] SYSTEM_CLOCK(COUNT_RATE=rate) wrong result for integer(4)::rate Date: Tue, 17 Mar 2015 21:16: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: 5.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: anlauf at gmx dot de X-Bugzilla-Status: NEW X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: fxcoudert at gcc dot gnu.org X-Bugzilla-Target-Milestone: 5.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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-03/txt/msg01722.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D64432 --- Comment #36 from Harald Anlauf --- (In reply to Jerry DeLisle from comment #35) > Author: jvdelisle > Date: Tue Mar 17 01:22:12 2015 > New Revision: 221473 >=20 > URL: https://gcc.gnu.org/viewcvs?rev=3D221473&root=3Dgcc&view=3Drev > Log: > 2015-03-16 Jerry DeLisle >=20 > PR fortran/64432 > * gfortran.dg/system_clock_3.f08: New test. >=20 > Added: > trunk/gcc/testsuite/gfortran.dg/system_clock_3.f08 > Modified: > trunk/gcc/testsuite/ChangeLog Jerry, are you sure that .and.ing the conditions in the testcase is correct, or shouldn't they rather be .or.ed? >>From gcc-bugs-return-480579-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Mar 17 21:27:55 2015 Return-Path: Delivered-To: listarch-gcc-bugs@gcc.gnu.org Received: (qmail 99662 invoked by alias); 17 Mar 2015 21:27:55 -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 99629 invoked by uid 48); 17 Mar 2015 21:27:51 -0000 From: "jens.gustedt at inria dot fr" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/65455] New: typeof _Atomic fails Date: Tue, 17 Mar 2015 21:27:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 4.9.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jens.gustedt at inria dot fr 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-03/txt/msg01723.txt.bz2 Content-length: 695 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65455 Bug ID: 65455 Summary: typeof _Atomic fails Product: gcc Version: 4.9.2 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: jens.gustedt at inria dot fr The following declarations _Atomic int a; __typeof__(a) a; result in compile errors: > typeof_atomic.c:2:15: error: conflicting type qualifiers for 'a' > __typeof__(a) a; > ^ > typeof_atomic.c:1:13: note: previous declaration of 'a' was here > _Atomic int a; This could be related to bug #65345. Jens