diff options
author | Martin Liska <mliska@suse.cz> | 2021-12-10 13:31:21 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2021-12-10 13:31:21 +0100 |
commit | 207775085ff03b414d63fbfc6a3c734fb0f6b396 (patch) | |
tree | cc1947262b46a980423ac37521366c07f038310c | |
parent | 2a1c3b69c015ea49e4c7c08291efd8f7e28e1193 (diff) | |
download | gcc-207775085ff03b414d63fbfc6a3c734fb0f6b396.zip gcc-207775085ff03b414d63fbfc6a3c734fb0f6b396.tar.gz gcc-207775085ff03b414d63fbfc6a3c734fb0f6b396.tar.bz2 |
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.
-rw-r--r-- | gcc/params.opt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/params.opt b/gcc/params.opt index f1b5757..80ec654 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 |