From patchwork Wed Jul 10 21:37:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 258248 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 3AF9C2C02F8 for ; Thu, 11 Jul 2013 07:38:16 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=yH3lJ7JkSKH/AlUKpxSXgk7BWjNRFWicR82774llgb41wNwEjZD5p C31J24AXWihoY1W1bcG+xgdNPbgjJE4f35e0kGU7ts/G6oPoYZhUH0lT7Bk08qnM JmpwMsMqYuJQRvz322sojyCVOeq2Jj+ikZ8atPttmv1tOv+S+GKQbo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=+2usZAl+WfDVxsijJ4+dYppXupE=; b=Fit/NCQzDkvOg2ziDYVr 3DcvFtZrg58xA+uCDXOFNpAoDNgT+gGQFeiN+GyPWBv0gMNpBIBvagmGdBSvk0pk 1DZ49XZp6E02qwAFB4x5JMN+G5UwTcZnAtUhUqt8nDF7jSdfA6tkakoME7pS4Xzf pIgfwz3K1HanMn0CVQbyueg= Received: (qmail 24588 invoked by alias); 10 Jul 2013 21:38:10 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 24579 invoked by uid 89); 10 Jul 2013 21:38:10 -0000 X-Spam-SWARE-Status: No, score=-4.0 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL autolearn=ham version=3.3.1 Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 10 Jul 2013 21:37:43 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1Ux24z-0005Nr-IQ from joseph_myers@mentor.com for gcc-patches@gcc.gnu.org; Wed, 10 Jul 2013 14:37:41 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Wed, 10 Jul 2013 14:37:41 -0700 Received: from digraph.polyomino.org.uk (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server id 14.2.247.3; Wed, 10 Jul 2013 22:37:39 +0100 Received: from jsm28 (helo=localhost) by digraph.polyomino.org.uk with local-esmtp (Exim 4.76) (envelope-from ) id 1Ux24w-0003lB-6A for gcc-patches@gcc.gnu.org; Wed, 10 Jul 2013 21:37:38 +0000 Date: Wed, 10 Jul 2013 21:37:38 +0000 From: "Joseph S. Myers" To: Subject: Remove stray text on @hook TARGET_CANONICALIZE_COMPARISON in tm.texi.in Message-ID: MIME-Version: 1.0 I noticed that the documentation of TARGET_CANONICALIZE_COMPARISON in tm.texi.in had stray text after the hook name on the @hook line, which became stray text after the prototype in the @deftypefn line in tm.texi. I've committed this patch to fix this. Index: doc/tm.texi =================================================================== --- doc/tm.texi (revision 200890) +++ doc/tm.texi (working copy) @@ -6040,7 +6040,7 @@ in @file{@var{machine}-modes.def}. @end defmac -@deftypefn {Target Hook} void TARGET_CANONICALIZE_COMPARISON (int *@var{code}, rtx *@var{op0}, rtx *@var{op1}, bool @var{op0_preserve_value}) (@var{code}, @var{op0}, @var{op1}, @var{op0_preserve_value}) +@deftypefn {Target Hook} void TARGET_CANONICALIZE_COMPARISON (int *@var{code}, rtx *@var{op0}, rtx *@var{op1}, bool @var{op0_preserve_value}) On some machines not all possible comparisons are defined, but you can convert an invalid comparison into a valid one. For example, the Alpha does not have a @code{GT} comparison, but you can use an @code{LT} Index: doc/tm.texi.in =================================================================== --- doc/tm.texi.in (revision 200890) +++ doc/tm.texi.in (working copy) @@ -5940,7 +5940,7 @@ in @file{@var{machine}-modes.def}. @end defmac -@hook TARGET_CANONICALIZE_COMPARISON (@var{code}, @var{op0}, @var{op1}, @var{op0_preserve_value}) +@hook TARGET_CANONICALIZE_COMPARISON On some machines not all possible comparisons are defined, but you can convert an invalid comparison into a valid one. For example, the Alpha does not have a @code{GT} comparison, but you can use an @code{LT} Index: ChangeLog =================================================================== --- ChangeLog (revision 200890) +++ ChangeLog (working copy) @@ -1,3 +1,9 @@ +2013-07-10 Joseph Myers + + * doc/tm.texi.in (TARGET_CANONICALIZE_COMPARISON): Remove stray + text on @hook line. + * doc/tm.texi: Regenerate. + 2013-07-10 Paolo Carlini PR c++/57869