diff options
author | Jakub Jelinek <jakub@redhat.com> | 2020-10-15 09:24:06 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2020-10-15 09:24:06 +0200 |
commit | a0504b3d7c39d78cd9f50a52c49edb0113eadea5 (patch) | |
tree | 3f7e9ce8f5af16d3bcd150b7a88202efe3c66455 /gcc | |
parent | 72eb8335848be77649ac1c5229b8c26352ab8949 (diff) | |
download | gcc-a0504b3d7c39d78cd9f50a52c49edb0113eadea5.zip gcc-a0504b3d7c39d78cd9f50a52c49edb0113eadea5.tar.gz gcc-a0504b3d7c39d78cd9f50a52c49edb0113eadea5.tar.bz2 |
params: Fix up help.exp testing
This patch fixes:
Running /usr/src/gcc/gcc/testsuite/gcc.misc-tests/help.exp ...
FAIL: compiler driver --help=params option(s): "[^.]$" absent from output: "y"
FAIL: compiler driver --help=param option(s): "^ +-.*[^:.]$" absent from output: " --param-ipa-jump-function-lookups= Maximum number of statements visited during jump function offset discovery"
2020-10-15 Jakub Jelinek <jakub@redhat.com>
* params.opt (-param-ipa-jump-function-lookups=): Add full stop at
the end of the parameter description.
Diffstat (limited to 'gcc')
-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 ec69ba0..e05f7ff 100644 --- a/gcc/params.opt +++ b/gcc/params.opt @@ -255,7 +255,7 @@ Maximum size of a list of values associated with each parameter for interprocedu -param-ipa-jump-function-lookups= Common Joined UInteger Var(param_ipa_jump_function_lookups) Init(8) Param Optimization -Maximum number of statements visited during jump function offset discovery +Maximum number of statements visited during jump function offset discovery. -param=ipa-max-aa-steps= Common Joined UInteger Var(param_ipa_max_aa_steps) Init(25000) Param Optimization |