From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4BC26385829C; Mon, 17 Oct 2022 20:10:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4BC26385829C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666037449; bh=adeDcfN+xGfU29DiUyVHdLllmRkLOQkiUGUBrYCgKZc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=aEsPv61emFnCtBZzt9qXg5LdDTGauAjd5dBCRHzRHr/2RepCYteNel1jz9vwVm1LS bhBaAFjzX23eoDZOsIZoVi5iQe037sVyddyyAXkszvSTNfrEJuTrKscy+n77ThAzpT De0fcwI+XMvxnKcgDPUIutiLX4TEEyAbP2KcFUlA= 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:10:48 +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 #5 from CVS Commits --- The releases/gcc-10 branch has been updated by Pat Haugen : https://gcc.gnu.org/g:7af52b39059b4496b17337d0efc7575f17febb26 commit r10-11043-g7af52b39059b4496b17337d0efc7575f17febb26 Author: Pat Haugen Date: Mon Oct 17 14:53:11 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 advancing 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.=