From 63496cbea58079a7cdf89234cd926557b4eab598 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Mon, 16 Nov 2020 13:13:40 +0100 Subject: [PATCH] modref: add missing Param Optimization keywords Fixes: FAIL: compiler driver --help=common option(s): "^ +-.*[^:.]$" absent from output: " --param=modref-max-depth= Maximum depth of DFS walk used by modref escape analysis" gcc/ChangeLog: * params.opt: All modref parameters miss Optimization and Param keyword as seen in testsuite failure. --- gcc/params.opt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/params.opt b/gcc/params.opt index 7922874..3f1f609 100644 --- a/gcc/params.opt +++ b/gcc/params.opt @@ -912,23 +912,23 @@ Common Joined UInteger Var(param_switch_conversion_branch_ratio) Init(8) Integer The maximum ratio between array size and switch branches for a switch conversion to take place. -param=modref-max-bases= -Common Joined UInteger Var(param_modref_max_bases) Init(32) +Common Joined UInteger Var(param_modref_max_bases) Init(32) Param Optimization Maximum number of bases stored in each modref tree. -param=modref-max-refs= -Common Joined UInteger Var(param_modref_max_refs) Init(16) +Common Joined UInteger Var(param_modref_max_refs) Init(16) Param Optimization Maximum number of references stored in each modref base. -param=modref-max-accesses= -Common Joined UInteger Var(param_modref_max_accesses) Init(16) +Common Joined UInteger Var(param_modref_max_accesses) Init(16) Param Optimization Maximum number of accesse stored in each modref reference. -param=modref-max-tests= -Common Joined UInteger Var(param_modref_max_tests) Init(64) +Common Joined UInteger Var(param_modref_max_tests) Init(64) Param Optimization Maximum number of tests performed by modref query. -param=modref-max-depth= -Common Joined UInteger Var(param_modref_max_depth) Init(256) +Common Joined UInteger Var(param_modref_max_depth) Init(256) Param Optimization Maximum depth of DFS walk used by modref escape analysis. -param=tm-max-aggregate-size= -- 2.7.4