From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7966A384B0C1; Tue, 21 Apr 2020 09:03:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7966A384B0C1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1587459791; bh=pl8+ccoQ1j8bm+aROa28dbzNfseNMAcTRQ46WDfDn68=; h=From:To:Subject:Date:From; b=jCkxzHpRw+SdbnZq/6o8eLa1cGKzIEu1FwzX68oyEQAIN8ajLBTxGeJ54XT56ngij lmwwZq+LSnT/NN/0MUwdLWlv6l278hsGeF2qJCfkHDv/qZSipJjfUGCK5t5ririQJF 7zPFQBF5njnFibeoESNIJz/X1Nb2p4Malf0SfDGU= From: "rsandifo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/94683] New: ICE in forwprop when folding to a VEC_PERM_EXPR Date: Tue, 21 Apr 2020 09:03:11 +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: 10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: rsandifo 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Apr 2020 09:03:11 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94683 Bug ID: 94683 Summary: ICE in forwprop when folding to a VEC_PERM_EXPR Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: rsandifo at gcc dot gnu.org Target Milestone: --- Compiling this with -march=3Darmv8.2-a+sve -msve-vector-bits=3D256 -O3: #include typedef float v8sf __attribute__((vector_size(32))); svfloat32_t f (svbool_t pg, svfloat32_t x, svfloat32_t y) { v8sf a =3D svadd_x (pg, x, 1); v8sf b =3D { a[0], a[0], a[2], a[2], a[4], a[4], a[6], a[6] }; return svdiv_x (pg, b, y); } gives: foo.c: In function =E2=80=98f=E2=80=99: foo.c:16:1: error: non-trivial conversion in =E2=80=98ssa_name=E2=80=99 16 | } | ^ v8sf __SVFloat32_t b_17 =3D _16; during GIMPLE pass: forwprop dump file: foo.031t.forwprop1=