From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from nikam.ms.mff.cuni.cz (nikam.ms.mff.cuni.cz [195.113.20.16]) by sourceware.org (Postfix) with ESMTPS id 973AE3842435 for ; Tue, 22 Sep 2020 09:12:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 973AE3842435 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ucw.cz Authentication-Results: sourceware.org; spf=none smtp.mailfrom=hubicka@kam.mff.cuni.cz Received: by nikam.ms.mff.cuni.cz (Postfix, from userid 16202) id 56FC628087A; Tue, 22 Sep 2020 11:12:30 +0200 (CEST) Date: Tue, 22 Sep 2020 11:12:30 +0200 From: Jan Hubicka To: Jakub Jelinek Cc: gcc-patches@gcc.gnu.org Subject: Re: [committed] ipa: Fix up ipa modref option help texts Message-ID: <20200922091230.GA43034@kam.mff.cuni.cz> References: <157394261677.27454.2367573047582814412@a285.localdomain> <20200919223255.GA69342@kam.mff.cuni.cz> <20200922081346.GX2176@tucnak> <20200922084753.GY2176@tucnak> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200922084753.GY2176@tucnak> User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Sep 2020 09:12:34 -0000 > On Tue, Sep 22, 2020 at 10:13:46AM +0200, Jakub Jelinek via Gcc-patches wrote: > > --- gcc/params.opt.jj 2020-09-21 11:15:53.816516949 +0200 > > +++ gcc/params.opt 2020-09-22 09:59:37.121115589 +0200 > > @@ -882,7 +882,7 @@ Maximum number of refs stored in each mo > > > > -param=modref-max-tests= > > Common Joined UInteger Var(param_modref_max_tests) Init(64) > > -Maximum number of tests perofmed by modref query > > +Maximum number of tests perofmed by modref query. > > And seeing the above typo led me to do some spell checking around. > Here is the result, committed as obvious to trunk: > > 2020-09-22 Jakub Jelinek > > gcc/ > * params.opt (--param=modref-max-tests=): Fix typo in help text: > perofmed -> performed. > * common.opt: Fix typo: incrmeental -> incremental. > * ipa-modref.c: Fix typos: recroding -> recording, becaue -> because, > analsis -> analysis. > (class modref_summaries): Fix typo: betweehn -> between. > (analyze_call): Fix typo: calle -> callee. > (read_modref_records): Fix typo: expcted -> expected. > (pass_ipa_modref::execute): Fix typo: calle -> callee. > gcc/c-family/ > * c.opt (Wbuiltin-declaration-mismatch): Fix typo in variable name: > warn_builtin_declaraion_mismatch -> warn_builtin_declaration_mismatch. Thanks a lot and sorry for these. Honza