From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4A9023858D20; Mon, 20 Feb 2023 08:44:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4A9023858D20 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676882650; bh=rhPA9Iu4QkLkXudhGXZsRR+qMUa7EJ8PXFUFmUs1aZQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=o1ktPqtBDUnl8M7ISiHFfUwybKweEQZ27hPzi0LOkWYTMtXS/Uk31HO14lE/9PtQ0 khMJ5Pa7prbb29Mt6EbKSrJt+iLos2TR7KmeH4yC/sTFpv9D8Y+o6/FY6hSPeeJEZh zEXLejcrKt6qc+MIHiOXD7KtRBT8+eA70LO/7dDs= From: "burnus at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBmb3J0cmFuLzEwNDgyNl0gWzExLzEyLzEzIFJlZ3Jlc3Np?= =?UTF-8?B?b25dIElDRSBpbiBnaW1wbGVfcmFuZ2VfZ2xvYmFsLCBhdCB2YWx1ZS1xdWVy?= =?UTF-8?B?eS5jYzo0MjQg4oCTIHdpdGggZGVmZXJyZWQtbGVuZ3RoIGNoYXJhY3RlciB2?= =?UTF-8?B?YXJpYWJsZQ==?= Date: Mon, 20 Feb 2023 08:44:10 +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: 12.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: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.4 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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=3D104826 Tobias Burnus changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |burnus at gcc dot gnu.org Summary|[11/12/13 Regression] ICE |[11/12/13 Regression] ICE |in gimple_range_global, at |in gimple_range_global, at |value-query.cc:424 |value-query.cc:424 =E2=80= =93 with | |deferred-length character | |variable --- Comment #4 from Tobias Burnus --- The code as written is invalid as 'x' is originally unallocated on entry to= the target region but then gets allocated on assignment in the target region. However, adding before '!$omp target' the line allocate(character(len=3D3) :: x) does not help.=