From a0504b3d7c39d78cd9f50a52c49edb0113eadea5 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 15 Oct 2020 09:24:06 +0200 Subject: [PATCH] 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 * params.opt (-param-ipa-jump-function-lookups=): Add full stop at the end of the parameter description. --- gcc/params.opt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4