From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4AEE6386F452; Thu, 21 Dec 2023 20:23:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4AEE6386F452 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1703190214; bh=oGJWza6/aL/BsElpVzCbz+61EU63FOsPmSxmp/ya/50=; h=From:To:Subject:Date:In-Reply-To:References:From; b=MAok+rTnlwM8sX55tWrNJGkCxZwpIoTQno4mZPsjmFLLT11w0YoPu3mgultBvyKFs lyBQgznVSWk/fp6wU2mRKA0vWg3FwvELCWvW/CaHSmmm7hlEhFvUDx6SYdxymVgj8m 9tcRf/kJnBBDJQ4vC0DwSmptWKGKfBadMWEkMrXM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/112951] [14 Regression] cond_copysign, cond_len_copysign optab not documented (added by r14-5285-gf30ecd8050444f) Date: Thu, 21 Dec 2023 20:23:34 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: documentation, patch X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: pinskia 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=3D112951 --- Comment #4 from GCC Commits --- The trunk branch has been updated by Andrew Pinski : https://gcc.gnu.org/g:df5df10355089c9c92529c222100722cea170877 commit r14-6792-gdf5df10355089c9c92529c222100722cea170877 Author: Andrew Pinski Date: Thu Dec 21 11:41:18 2023 -0800 Document cond_copysign and cond_len_copysign optabs [PR112951] This adds the documentation for cond_copysign and cond_len_copysign opt= abs. Also reorders the optabs.def to be in the similar order as how the inte= rnal function was done. gcc/ChangeLog: PR middle-end/112951 * doc/md.texi (cond_copysign): Document. (cond_len_copysign): Likewise. * optabs.def: Reorder cond_copysign to be before cond_fmin. Likewise for cond_len_copysign. Signed-off-by: Andrew Pinski =