From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id EA4A138582BC; Wed, 7 Feb 2024 12:47:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EA4A138582BC DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1707310049; bh=JRS0O4KbXbe10KnOd3nJyaiTLGKYRg0/O8GK7I8IRZ8=; h=From:To:Subject:Date:From; b=ecuk2nw2J+E9OShH+lSuyQtRUIyhm+04kOoEqLm4qozCsPvuGw/YaZCRsJ+sMuPx3 4mzEkxls6AqRK7w9p24BskdOy45iRjUCP0h/C7bXkr8jThETm/H/qodq4ZUmXiwN/8 ydyNHRN5yKwi2Sb/ntJzMZVzHYuiPGwnZ0elzxKs= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/113808] New: [14 Regression] FAIL: libgomp.fortran/non-rectangular-loop-1.f90 Date: Wed, 07 Feb 2024 12:47:29 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org 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 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=3D113808 Bug ID: 113808 Summary: [14 Regression] FAIL: libgomp.fortran/non-rectangular-loop-1.f90 Product: gcc Version: 14.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: rguenth at gcc dot gnu.org Target Milestone: --- The following reduced testcase from libgomp.fortran/non-rectangular-loop-1.= f90 fails execution: program main integer :: n,m,p, i,j,k,ll n =3D 11 m =3D 23 p =3D 27 !$omp simd collapse(3) lastprivate(k) do i =3D 1, n,2 do j =3D 1, m do k =3D 1, i + 41 if (k > 11 + 41 .or. k < 1) error stop end do end do end do if (k /=3D 53) then print *, k, 53 error stop endif end when built with -O -msse4.1 -fopenmp-simd > ./a.out=20 50 53 ERROR STOP=20 Error termination. Backtrace: #0 0x4008ec in ??? #1 0x400909 in ??? #2 0x7f873306f24c in ??? #3 0x400679 in _start at ../sysdeps/x86_64/start.S:120 #4 0xffffffffffffffff in ???=