From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 54FAE3858C00; Thu, 23 Feb 2023 17:06:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 54FAE3858C00 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677171965; bh=0eBf7o7dPbjs8cUfvI+XtQxx8Z3zCLBrraqzkxB3Riw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=n4b2JqjxE2S6fQ1wwJtDMkB06ijDGZ76dyl9jgRj9PNH75BmKM0F99r5vUE/oUORl yqLvleJ8ZhOLDCj5aqRzz6XhpEklYBWucHaO7Ige6652Wqrvwgte7RSjwfL1gH7jrK lu07csOBj1okRXqUo5NA1bUtxint4HWlijyNfLkI= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/108881] "__builtin_ia32_cvtne2ps2bf16_v16hi" compiled only with option -mavx512bf16 report ICE. Date: Thu, 23 Feb 2023 17:06:04 +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: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub 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: cc 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=3D108881 Jakub Jelinek changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #2 from Jakub Jelinek --- With -mavx512bf16 typedef float __m256 __attribute__((__vector_size__(32))); typedef __bf16 __v16bf16 __attribute__((__vector_size__(32))); __v16bf16 res2; __m256 x3, x4; void foo (void) { res2 =3D __builtin_ia32_cvtne2ps2bf16_v16bf (x3, x4); } still ICEs on the trunk.=