From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id DFF7D3858C39; Sat, 6 May 2023 15:31:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DFF7D3858C39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1683387085; bh=4E8gNklfH7TFBJh27Bza2xECg6B0xZdA71cF7jMPJ8E=; h=From:To:Subject:Date:In-Reply-To:References:From; b=sKzJb/wShh9NysUbOMlS+76ZGlmTypCPz2Wd8uFbZsKXthRqwVx6sOReRtqqG/c8O bLv3UdpxAs4bLVi7qofx/3bcEPX+5qPSxOtIb72th+3DDnS2t9eV5eyIN3K15wbNFm q1BeoStG7wBvOlOFUmXWb3Dcz1k3AYLUi0q/OLOw= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug libffi/109447] test case libffi.closures/cls_align_longdouble_split.c fails Date: Sat, 06 May 2023 15:31:24 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libffi X-Bugzilla-Version: 12.2.1 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW 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=3D109447 --- Comment #7 from CVS Commits --- The master branch has been updated by Peter Bergner : https://gcc.gnu.org/g:043550bceea7881163bba5d8a0486bb100a05809 commit r14-542-g043550bceea7881163bba5d8a0486bb100a05809 Author: Dan Hor=C3=A1k Date: Wed May 3 14:29:09 2023 -0500 libffi: fix handling of homogeneous float128 structs (#689) If there is a homogeneous struct with float128 members, they should be copied to vector register save area. The current code incorrectly copies only the value of the first member, not increasing the pointer with each iteration. Fix this. Merged from upstream libffi commit: 464b4b66e3cf3b5489e730c1466ee1bf825560e0 2023-05-03 Dan Hor=C3=A1k libffi/ PR libffi/109447 * src/powerpc/ffi_linux64.c (ffi_prep_args64): Update arg.f128 pointer.=