From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3ADC03858C74; Wed, 10 Jan 2024 05:09:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3ADC03858C74 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704863379; bh=xEfvGGErSVGDxPgk6k8GBRxHrbRK1dVjttBIDbHFoSk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=uV1nsmTUPN6pAqQ8Pe84ikt5wZiZDlPTE1IDKKi7tU7LNARx4VuE1967ZmpfDmVKh 27JW+YTQWFAVfp4PWYDGRD7x5/gTjl9zL9vYz2MZUYEFzy81115Sa7FArLeoGZ+n3v RdKhQ182sD5iSUaKMxoJhUcyOf1zzizpHDHukmMM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/112606] [14 Regression] powerpc64le-linux-gnu: 'FAIL: gcc.target/powerpc/p8vector-fp.c scan-assembler xsnabsdp' Date: Wed, 10 Jan 2024 05:09:36 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: missed-optimization, testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: linkw at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 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=3D112606 --- Comment #6 from GCC Commits --- The master branch has been updated by Kewen Lin : https://gcc.gnu.org/g:cf5f6a048e376ab0d2f7bc283c158605e1166061 commit r14-7090-gcf5f6a048e376ab0d2f7bc283c158605e1166061 Author: Kewen Lin Date: Tue Jan 9 23:06:12 2024 -0600 rs6000: Make copysign (x, -1) back to -abs (x) for IEEE128 float [PR112= 606] I noticed that commit r14-6192 can't help PR112606 #c3 as it only takes care of SF/DF but TF/KF can still suffer the issue. Similar to commit r14-6192, this patch is to take care of copysign3 with IEEE128 as well. PR target/112606 gcc/ChangeLog: * config/rs6000/rs6000.md (copysign3 IEEE128): Change predicate of the last argument from altivec_register_operand to any_opera= nd.=20 If operands[2] is CONST_DOUBLE, emit abs or neg abs depending on i= ts sign otherwise if it doesn't satisfy altivec_register_operand, force= it to REG using copy_to_mode_reg.=