From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 1136038582AB; Thu, 11 May 2023 07:51:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1136038582AB DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683791470; bh=ZpHLAZojCLQjBJUmQaSROAV+GuIyY+zcBzfCvazt5ic=; h=From:To:Subject:Date:In-Reply-To:References:From; b=hN68K9BRIRALEBeGsuj0wAyk6K2vTSmgn/K1ijTdAjnPp56YNP8naQvmz0nxmvV8S Wwr8wjtsHZBEKOVX8DYQDZdUH3YcL/OJeOcdRA0ZPVk2oEQNN6vLvsFfY1x7mSX7r2 E6l3BK6lHq7OTno3egIV9mdFBt9zN26T47Kd3fXo= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109807] [14 Regression] sse2-mmx-pmaddwd.c met ICE after commit r14-666-g608e7f3ab47 with march=cascadelake Date: Thu, 11 May 2023 07:51:09 +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: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com 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=3D109807 David Binderman changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dcb314 at hotmail dot com --- Comment #3 from David Binderman --- I see the same for this C code on znver1: typedef struct MonitorInfo MonitorInfo; char *decode_edid_edid; struct MonitorInfo { int width_mm; int height_mm } decode_edid() { MonitorInfo info; MonitorInfo *__trans_tmp_3 =3D &info; { MonitorInfo *info =3D __trans_tmp_3; info->width_mm =3D 10 * decode_edid_edid[5]; info->height_mm =3D 10 * decode_edid_edid[6]; } decode_headerdecode_vendor_and_product_identificationdecode_edid_version( info); } $ ~/gcc/results.20230511.asan.ubsan/bin/gcc -c -O2 -march=3Dznver1 -w bug91= 9.c during GIMPLE pass: slp bug919.c: In function =E2=80=98decode_edid=E2=80=99: bug919.c:6:3: internal compiler error: in ix86_widen_mult_cost, at config/i386/i386.cc:20442 6 | } decode_edid() { | ^~~~~~~~~~~ It was ok yesterday: $ ~/gcc/results.20230510.asan.ubsan/bin/gcc -c -O2 -march=3Dznver1 -w bug91= 9.c $=