From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21927 invoked by alias); 19 Sep 2016 15:50:09 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 21625 invoked by uid 89); 19 Sep 2016 15:50:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=HTo:D*comcast.net X-HELO: gate.crashing.org Received: from gate.crashing.org (HELO gate.crashing.org) (63.228.1.57) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 19 Sep 2016 15:49:55 +0000 Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.13.8) with ESMTP id u8JFnmRS024856; Mon, 19 Sep 2016 10:49:49 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id u8JFnmhr024855; Mon, 19 Sep 2016 10:49:48 -0500 Date: Mon, 19 Sep 2016 15:55:00 -0000 From: Segher Boessenkool To: Mike Stump Cc: Gerald Pfeifer , Jeff Law , gcc-patches@gcc.gnu.org Subject: Re: [PATCH 1/3] Put a TARGET_LRA_P into every target Message-ID: <20160919154947.GA10305@gate.crashing.org> References: <20160914103510.GA24835@gate.crashing.org> <20160916134054.GB6920@gate.crashing.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-IsSubscribed: yes X-SW-Source: 2016-09/txt/msg01181.txt.bz2 On Fri, Sep 16, 2016 at 12:04:23PM -0700, Mike Stump wrote: > On Sep 16, 2016, at 6:40 AM, Segher Boessenkool wrote: > > > > Does just "The default version of this target hook returns true." sound > > better? I.e. delete "always". > > That is fine. Okay, I'll commit the following (yes I'm slow). Thanks, Segher 2016-09-19 Segher Boessenkool * target.def (lra_p): Wordsmithing. * doc/tm.texi: Regenerate. --- gcc/doc/tm.texi | 2 +- gcc/target.def | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index 0ca00d2..ced6274 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -2861,7 +2861,7 @@ A target hook which can change allocno class for given pseudo from @end deftypefn @deftypefn {Target Hook} bool TARGET_LRA_P (void) -A target hook which returns true if we use LRA instead of reload pass. The default version of this target hook returns always true. New ports should use LRA, and existing ports are encouraged to convert. +A target hook which returns true if we use LRA instead of reload pass. The default version of this target hook returns true. New ports should use LRA, and existing ports are encouraged to convert. @end deftypefn @deftypefn {Target Hook} int TARGET_REGISTER_PRIORITY (int) diff --git a/gcc/target.def b/gcc/target.def index a4e4cbb..0e10d6f 100644 --- a/gcc/target.def +++ b/gcc/target.def @@ -4929,7 +4929,7 @@ DEFHOOK (lra_p, "A target hook which returns true if we use LRA instead of reload pass.\ \ - The default version of this target hook returns always true. New ports\ + The default version of this target hook returns true. New ports\ should use LRA, and existing ports are encouraged to convert.", bool, (void), default_lra_p) -- 1.9.3