diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-13 17:35:22 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-13 17:35:22 +0000 |
commit | 578e34563f159ce091cda0b8f3fd8a2da30c297c (patch) | |
tree | bd20c2c1f843ead9e91e8a0d09f75c49dbe9f5d9 /gcc/params.def | |
parent | 5d92ac748a1816c48ce2cc86623ab0e70a3512b5 (diff) | |
download | gcc-578e34563f159ce091cda0b8f3fd8a2da30c297c.tar.gz |
Fix documentation of the new parameters.
2010-03-10 Sebastian Pop <sebastian.pop@amd.com>
* doc/invoke.texi: Fix documentation of graphite-max-nb-scop-params,
graphite-max-bbs-per-function, and loop-block-tile-size.
* params.def (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS): Replace "maximal"
with "maximum".
(PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION): Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157437 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.def')
-rw-r--r-- | gcc/params.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/params.def b/gcc/params.def index dca575d4ab0..435a788307b 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -749,14 +749,14 @@ DEFPARAM (PARAM_LOOP_BLOCK_TILE_SIZE, DEFPARAM (PARAM_GRAPHITE_MAX_NB_SCOP_PARAMS, "graphite-max-nb-scop-params", - "maximal number of parameters in a SCoP", + "maximum number of parameters in a SCoP", 10, 0, 0) /* Maximal number of basic blocks in the functions analyzed by Graphite. */ DEFPARAM (PARAM_GRAPHITE_MAX_BBS_PER_FUNCTION, "graphite-max-bbs-per-function", - "maximal number of basic blocks per function to be analyzed by Graphite", + "maximum number of basic blocks per function to be analyzed by Graphite", 100, 0, 0) /* Avoid doing loop invariant motion on very large loops. */ |