From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 607D5385C6D1; Wed, 4 Sep 2024 05:35:17 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 607D5385C6D1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1725428117; bh=4doQTIFJhoPQM0Mfkff0Pydatu5K36fnm2Seq5u9l8w=; h=From:To:Subject:Date:In-Reply-To:References:From; b=MtQToq3ZO9n7pYtqNwwRn5E5fIyBfxd6GU2toN4F1I9YJklgGose/7uFebE7JH+MO TyHOAfqG1wK+6KeK0OntVBBlGjYENdpnbE1pwxz9T/WS6y3C5yLV6UkIl/dAOFTgLB N3rcYJIvSlBmZ3jbybEjoq4hmkh3l/Hiju7XjxnY= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/116595] default-initialization of vfloat32m1x4_t (RISCV V) or svfloat32x4_t (Armv9-a SVE) causes ICE Date: Wed, 04 Sep 2024 05:35:17 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 15.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia 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: short_desc component 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=3D116595 Andrew Pinski changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|default-initialization of |default-initialization of |vfloat32m1x4_t causes ICE |vfloat32m1x4_t (RISCV V) or | |svfloat32x4_t (Armv9-a SVE) | |causes ICE Component|target |c++ --- Comment #1 from Andrew Pinski --- The same ICE happens with SVE: ``` #include void transpose4x4_ps() { svfloat32x4_t _r =3D svfloat32x4_t(); } ```=