From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C3B9D3858024; Tue, 6 Sep 2022 08:08:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C3B9D3858024 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1662451703; bh=+iFFA6x/N0g5ojlRpoEhqZHHCS7mx/v2bUz0LQlhw+8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=b3SMSXM1NRvuG0hazuwIS2+WHJ6l0GSTAocwq83H4vVTX88DTLdgwIIE9w7YAj5hp rirvDnT+uQFW3oA13A/+ThJGc4dmGhdm3S/nL/dj5w6qB/Y7+/tTX+6M2BoycnlV+s FPPphBWRFRiHdFNmdnswZAEfQhsEo2IB3fb6+bxI= From: "belagod at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/106339] [13 Regression] ICE in exact_div, at poly-int.h:2232 Date: Tue, 06 Sep 2022 08:08:23 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: belagod at gcc dot gnu.org X-Bugzilla-Status: NEW 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: cc everconfirmed cf_reconfirmed_on bug_status 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=3D106339 Tejas Belagod changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |belagod at gcc dot gnu.org Ever confirmed|0 |1 Last reconfirmed| |2022-09-06 Status|UNCONFIRMED |NEW --- Comment #1 from Tejas Belagod --- Also breaks my glibc build - ICEs with this test case reduced from glibc/dlfcn/dlinfo.c: /* aarch64-none-linux-gnu-gcc -march=3Darmv8-a+sve -O2 ice.c */ typedef long unsigned int size_t; struct link_map { size_t l_tls_modid; }; # 24 "dlinfo.c" 2 struct dlinfo_args { void *handle; int request; void *arg; }; void dlinfo_doit (void *argsblock) { struct dlinfo_args *const args =3D argsblock; struct link_map *l =3D args->handle; *(size_t *) args->arg =3D 0; *(size_t *) args->arg =3D l->l_tls_modid; } >From my prelimnary investigation, it looks like tree-vect-slp is trying to build the constant vector using duplicate and interleave with 2 V1DI vector= s as with the other example posted above. I haven't dug deep enough if V1DI vect= ors are the right thing to do here.=