From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 682CE3858C53; Wed, 10 Jan 2024 11:00:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 682CE3858C53 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704884402; bh=wpY3b3LtgLzQ9LmgTwQU6ikAJ2y8HsMrSuPcco9ukKY=; h=From:To:Subject:Date:From; b=Wb6jyA2/gEBvhrBB8WKu9z2fq+qNfo/xAkhcBNfaqQISpSM1K2TJzTh39gHfXr1Vw XkI0MvVyT+yr7bJB/9fAUCrKsOlpVmmSU3Z48vTEun905cJiXySNDJJ9kdaj9noO+p Nuzol10CnQchpx4TMIZSPghuQJcILtuuBtWRZs1s= From: "ivan.pribec at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/113305] New: ICE with do concurrent and ivdep Date: Wed, 10 Jan 2024 11:00: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: 13.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: ivan.pribec at gmail dot com X-Bugzilla-Status: UNCONFIRMED 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_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: 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=3D113305 Bug ID: 113305 Summary: ICE with do concurrent and ivdep Product: gcc Version: 13.2.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: ivan.pribec at gmail dot com Target Milestone: --- Created attachment 57022 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D57022&action=3Dedit mwe using do concurrent and ivdep directive An internal compiler error is triggered by adding the ivdep directive to a = do concurrent loop: program dc implicit none real :: a(12), b(12) integer :: i call random_number(b) !GCC$ ivdep do concurrent (i=3D1:12) a(i) =3D 2*b(i) end do end program ... $ gfortran -Wall dc.f90=20 f951: internal compiler error: Segmentation fault: 11 Please submit a full bug report, with preprocessed source (by using -freport-bug). See for instructions.=