From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id C8F41386EC2F for ; Tue, 22 Sep 2020 08:13:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org C8F41386EC2F Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-179-HkRunRfVO8-cnqhGtkjaGQ-1; Tue, 22 Sep 2020 04:13:52 -0400 X-MC-Unique: HkRunRfVO8-cnqhGtkjaGQ-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 34CFD1868405; Tue, 22 Sep 2020 08:13:51 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-112-37.ams2.redhat.com [10.36.112.37]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 716D010021AA; Tue, 22 Sep 2020 08:13:50 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id 08M8DmRi015965; Tue, 22 Sep 2020 10:13:48 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id 08M8Dk6O015964; Tue, 22 Sep 2020 10:13:46 +0200 Date: Tue, 22 Sep 2020 10:13:46 +0200 From: Jakub Jelinek To: Jan Hubicka Cc: David =?utf-8?B?xIxlcGVsw61r?= , gcc-patches@gcc.gnu.org Subject: [committed] ipa: Fix up ipa modref option help texts Message-ID: <20200922081346.GX2176@tucnak> Reply-To: Jakub Jelinek References: <157394261677.27454.2367573047582814412@a285.localdomain> <20200919223255.GA69342@kam.mff.cuni.cz> MIME-Version: 1.0 In-Reply-To: <20200919223255.GA69342@kam.mff.cuni.cz> User-Agent: Mutt/1.11.3 (2019-02-01) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H5, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham 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 08:13:55 -0000 Hi! This fixes FAIL: compiler driver --help=common option(s): "^ +-.*[^:.]$" absent from output: " --param=modref-max-tests= Maximum number of tests perofmed by modref query" FAIL: compiler driver --help=optimizers option(s): "^ +-.*[^:.]$" absent from output: " -fipa-modref Perform interprocedural modref analysis" Tested on x86_64-linux, committed to trunk. 2020-09-22 Jakub Jelinek * common.opt (-fipa-modref): Add dot at the end of option help. * params.opt (--param=modref-max-tests=): Likewise. --- gcc/common.opt.jj 2020-09-21 11:15:53.705518585 +0200 +++ gcc/common.opt 2020-09-22 10:00:00.034779245 +0200 @@ -1827,7 +1827,7 @@ Perform interprocedural bitwise constant fipa-modref Common Report Var(flag_ipa_modref) Optimization -Perform interprocedural modref analysis +Perform interprocedural modref analysis. fipa-profile Common Report Var(flag_ipa_profile) Init(0) Optimization --- 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. -param=tm-max-aggregate-size= Common Joined UInteger Var(param_tm_max_aggregate_size) Init(9) Param Optimization Jakub