From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 0CC573858403; Mon, 17 Oct 2022 20:15:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0CC573858403 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666037730; bh=24eVrf7haZhehAcdry4dOxNbyNr2Nz8t07CD3l3JRbQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=OY5nvA7/lTfm8OeRz1FoWpYSax4zOf77JQPNnYwElcqqcnZyX7iVOq4fzBFlAHo9h ktP4yfZQGLoDRcfaD2bNvqQW4ZkNKX/DbxJQ81oXzuOLkDMAmm3+dh2kgxJOj7y55S zygDFQ3qEWU5Lntaa43KaDgh7IxlIN6yKZ6hSqR0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/99685] gcc.target/powerpc/divkc3-1.c and mulkc3-1.c fail for 32 bits Date: Mon, 17 Oct 2022 20:15:29 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: pthaugen 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=3D99685 --- Comment #6 from CVS Commits --- The releases/gcc-11 branch has been updated by Pat Haugen : https://gcc.gnu.org/g:e7f0d923dc29965ff92f27245ea63c5726edcacd commit r11-10319-ge7f0d923dc29965ff92f27245ea63c5726edcacd Author: Pat Haugen Date: Mon Oct 17 15:11:42 2022 -0500 Fix register count when not splitting Complex IEEE 128-bit args. For ABI_V4, we do not split complex args. This created a problem because even though an arg would be passed in two VSX regs, we were only advanc= ing the function arg counter by one VSX register. Fixed with this patch. (backported commit 2ee68beee709e48fce85b8892ff9985acc6a91a8) gcc/ PR target/99685 * config/rs6000/rs6000-call.c (rs6000_function_arg_advance_1): = Bump register count when not splitting IEEE 128-bit Complex.=