From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BEF443858D20; Fri, 20 Jan 2023 17:23:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BEF443858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1674235407; bh=efxk95wwqtbop8h2i9Oe0X00f++72K/b9NeCni4gZnE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hBN8oubDbMC7fIQIWu8iV67AmtxFBMcntxqBs56rK+V1l7/+JlEBK2BrohZux0ciH tEO1NO7fS0qOqbGVq16Zy3jFXuVS+3ELbLio7HU6IqbvNvngerFUp8XJ2YANMVdQ+j LmBrwMBfYr31SkO9MSfpOn1bGQZffi144dXN2+5U= From: "burnus at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/108435] [13 Regression] ICE in as_a, at is-a.h:242 since r13-142-g705bcedf6eae2d7c Date: Fri, 20 Jan 2023 17:23:27 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-valid-code, openmp X-Bugzilla-Severity: normal X-Bugzilla-Who: burnus 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: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component cc 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=3D108435 Tobias Burnus changed: What |Removed |Added ---------------------------------------------------------------------------- Component|fortran |middle-end CC| |burnus at gcc dot gnu.org --- Comment #3 from Tobias Burnus --- (In reply to Jakub Jelinek from comment #2) > Possibly dup of PR107424 or at least related to that. I don't think so. In any case, it shows also up for C if one uses the nested-functions extension: int main () { int i, j; void bar() { #pragma omp for simd collapse(2) for (i =3D 1; i <=3D 16; i++) for (j =3D 1; j <=3D 16; j++) /* Note: *no* non-rectangular loop ne= st. */ ; } bar (); return 0; } (I get an ICE since GCC 8 and none with GCC 7; thus, I might be a regressio= n, but I have not checked in depth.)=