diff options
author | Martin Liska <mliska@suse.cz> | 2020-11-16 13:13:40 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2020-11-16 13:26:35 +0100 |
commit | 63496cbea58079a7cdf89234cd926557b4eab598 (patch) | |
tree | 0548a56da3d16baa29226482001ce86f80894185 /gcc | |
parent | 9b2e9a0aca2f915b994d3ac406d8cbde24df4329 (diff) | |
download | gcc-63496cbea58079a7cdf89234cd926557b4eab598.zip gcc-63496cbea58079a7cdf89234cd926557b4eab598.tar.gz gcc-63496cbea58079a7cdf89234cd926557b4eab598.tar.bz2 |
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.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/params.opt | 10 |
1 files 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= |