From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 684C339DD7FF; Mon, 12 Dec 2022 11:19:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 684C339DD7FF DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670843978; bh=HWiXH+ee1l+sHo4EpJpHhU3pS0aPP0F/wVck6kkU6qE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=J1rLZmxZF2bZvV0+5s0FoD+BhaDopenuytgzptenVRRatVyHxcK5lxLGOLfFSjWcz VdaDLTvc0/zEPHhrCskQ2dJzPB4DVUVBWNMQ18ctFmcZAdaL0uYNiB3vWXNcSMeoS9 mtAZZpcfCSYppWfCp0wvsmmBiFysw8M974K2IvdQ= From: "rguenth at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/106433] [13 Regression] ICE in vect_transform_loops, at tree-vectorizer.cc:1032 Date: Mon, 12 Dec 2022 11:19:37 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-valid-code, openmp X-Bugzilla-Severity: normal X-Bugzilla-Who: rguenth at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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=3D106433 --- Comment #3 from Richard Biener --- Interestingly the cgraph node for 'bar' doesn't have any clones when it cha= nges pure/const state so we cannot update those as well.=20 create_version_clone_with_body as used by OMP cloning doesn't populate those links it seems, as opposed to create_clone. Honza?=