From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C68DD3858D1E; Thu, 8 Sep 2022 06:09:10 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C68DD3858D1E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1662617350; bh=8CT4x+H52a+pTDMFg9WoZzVsUCQ8u3qSRvFHGlvVydg=; h=From:To:Subject:Date:In-Reply-To:References:From; b=P2FQ42RH7urFEqOWKeNf+sXdstUXgB/sy+UVcS164oB0RdQlJa/oeKmpZvMcWfw9M xO45zTJUd6z5mMCscdfKXYHbiaVUBErGkIXHkP+8ucJ7WNMz0fkm7NBYMiV4FNhmvL 1STUoTFyeogZj8E56/iBKT61iRCRzRG1VvD+GFgk= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/106886] ice in vect_schedule_slp_node Date: Thu, 08 Sep 2022 06:09:10 +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: 12.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: 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=3D106886 --- Comment #2 from David Binderman --- Reduced C code seems to be: rl2GeomExport64_little_endian, rl2GeomExport64_little_endian_arch; rl2GeomExport64(unsigned char *p, double value) { union { unsigned char byte[8]; double double_value } convert; convert.double_value =3D value; if (rl2GeomExport64_little_endian_arch) if (rl2GeomExport64_little_endian) { *(p + 7) =3D convert.byte[0]; *(p + 6) =3D convert.byte[1]; *(p + 5) =3D convert.byte[2]; *(p + 4) =3D convert.byte[3]; *(p + 3) =3D convert.byte[4]; *(p + 2) =3D convert.byte[5]; *(p + 1) =3D convert.byte[6]; *p =3D convert.byte[7]; } else *p =3D convert.byte[7]; }=