From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 92CB8385BF83; Mon, 25 Oct 2021 21:37:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 92CB8385BF83 From: "ibuclaw at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug d/102837] [12 regression] Many 32-bit gdc tests FAIL Date: Mon, 25 Oct 2021 21:37:20 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: d X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: ibuclaw at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: ibuclaw at gdcproject dot org X-Bugzilla-Target-Milestone: 12.0 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 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: Mon, 25 Oct 2021 21:37:20 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D102837 ibuclaw at gcc dot gnu.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ibuclaw at gcc dot gnu.org --- Comment #4 from ibuclaw at gcc dot gnu.org --- (In reply to ro@CeBiTec.Uni-Bielefeld.DE from comment #3) > Actually, it's >=20 > commit efa5449a094d3887e124d400ff0410af2c745b2d > Author: Iain Buclaw > Date: Sat Sep 25 19:50:52 2021 +0200 >=20 > libphobos: Give _Unwind_Exception an alignment that best resembles > __attribute__((aligned)) >=20=20=20=20=20 > in particular >=20 > +else version (X86) private enum __aligned__ =3D 16; >=20 > I don't yet see where/how struct _Unwind_Execption is allocated to > guarantee that alignment. Depending on the answer PR libstdc++/77691 > (32-bit Solaris/x86 malloc only returns 8-byte aligned memory) or the > fact that the stack is only 4-byte aligned following the i386 psABI) may > be relevant. i386 psABI would likely be the most relevant detail here. I'll see if expo= sing the value of __attribute__((aligned)) to D CTFE is possible.=