From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 1A2A83858C27; Fri, 10 Dec 2021 12:31:58 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1A2A83858C27 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-5892] param: Add missing . in description. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 2a1c3b69c015ea49e4c7c08291efd8f7e28e1193 X-Git-Newrev: 207775085ff03b414d63fbfc6a3c734fb0f6b396 Message-Id: <20211210123158.1A2A83858C27@sourceware.org> Date: Fri, 10 Dec 2021 12:31:58 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Dec 2021 12:31:58 -0000 https://gcc.gnu.org/g:207775085ff03b414d63fbfc6a3c734fb0f6b396 commit r12-5892-g207775085ff03b414d63fbfc6a3c734fb0f6b396 Author: Martin Liska Date: Fri Dec 10 13:31:21 2021 +0100 param: Add missing . in description. Fixes: FAIL: compiler driver --help=param option(s): "^ +-.*[^:.]$" absent from output: " --param=max-inline-functions-called-once-loop-depth= Maximum loop depth of a call which is considered for inlining functions called once" FAIL: compiler driver --help=params option(s): "[^.]$" absent from output: "e" gcc/ChangeLog: * params.opt: Add missing dot. Diff: --- gcc/params.opt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/params.opt b/gcc/params.opt index f1b5757461c..80ec6546bcd 100644 --- a/gcc/params.opt +++ b/gcc/params.opt @@ -547,7 +547,7 @@ Maximum depth of search in the dominator tree for expressions to hoist. -param=max-inline-functions-called-once-loop-depth= Common Joined UInteger Var(param_inline_functions_called_once_loop_depth) Init(6) Optimization Param -Maximum loop depth of a call which is considered for inlining functions called once +Maximum loop depth of a call which is considered for inlining functions called once. -param=max-inline-functions-called-once-insns= Common Joined UInteger Var(param_inline_functions_called_once_insns) Init(4000) Optimization Param