From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BC0403858C42; Tue, 23 Apr 2024 14:10:18 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BC0403858C42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713881418; bh=9PM0/M/ZxMLU/42RR/5zGq+LAuTI0qIjuSRMHF9KZYo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=dFapHBbHbkk+2lXauZB2NiXOdGXNOSQMEmU78UPEeG41ySzE4H5V0Yb+/1P54bDUU o6dCvdEyQO6/QQEFK9+MBPZdyNUpLuYGqWqgfQKvabfiKO0L/Uf8F8fMpGYs1T47Av mn4b/uotGDs0IShBed5WprNMxwYon/YMRk+IKonQ= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/114825] [11/12/13/14 Regression] Compiler error using gfortran and OpenMP since r5-1190 Date: Tue, 23 Apr 2024 14:10:18 +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: 13.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on priority component everconfirmed target_milestone cc short_desc 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D114825 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Last reconfirmed| |2024-04-23 Priority|P3 |P2 Component|libgomp |fortran Ever confirmed|0 |1 Target Milestone|--- |11.5 CC| |burnus at gcc dot gnu.org Summary|Compiler error using |[11/12/13/14 Regression] |gfortran and OpenMP |Compiler error using | |gfortran and OpenMP since | |r5-1190 --- Comment #1 from Jakub Jelinek --- Started with r5-1190-g92d28cbb59cc5a611af41342c5b224fbf779a44d Reduced testcase (just -fopenmp needed): subroutine pr114825(b) type t real, allocatable :: m(:) end type t type(t), allocatable, target :: b(:) type(t), pointer :: d !$omp parallel private(d) d =3D> b(1) !$omp end parallel contains subroutine sub d =3D> b(1) end subroutine sub end subroutine pr114825=