diff options
author | Richard Guenther <rguenther@suse.de> | 2006-04-27 14:25:49 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2006-04-27 14:25:49 +0000 |
commit | 921b02cd1f97018761f736753cf9a8d9a3227494 (patch) | |
tree | a306a311b5eefe4eab4a6aa313af2b254671b9b8 /gcc | |
parent | 67ac6e637c33f25f2199d20882babd47e926c6d5 (diff) | |
download | gcc-921b02cd1f97018761f736753cf9a8d9a3227494.zip gcc-921b02cd1f97018761f736753cf9a8d9a3227494.tar.gz gcc-921b02cd1f97018761f736753cf9a8d9a3227494.tar.bz2 |
re PR rtl-optimization/26685 (documentation refer to nonexisting --param max-cse-insns)
2006-04-27 Richard Guenther <rguenther@suse.de>
PR rtl-optimization/26685
* params.def (PARAM_MAX_CSE_INSNS): Correct typo that named
this one "max-flow-memory-locations".
From-SVN: r113300
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/params.def | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e528f63..0ca0fcf 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2006-04-27 Richard Guenther <rguenther@suse.de> + PR rtl-optimization/26685 + * params.def (PARAM_MAX_CSE_INSNS): Correct typo that named + this one "max-flow-memory-locations". + +2006-04-27 Richard Guenther <rguenther@suse.de> + PR tree-optimization/25148 * tree-vrp.c (compare_values): Remove code dealing with comparisons against type min/max value. Honour overflow diff --git a/gcc/params.def b/gcc/params.def index 84f16e2..e8d8615 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -391,7 +391,7 @@ DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH, "The maximum length of path considered in cse", 10, 0, 0) DEFPARAM(PARAM_MAX_CSE_INSNS, - "max-flow-memory-locations", + "max-cse-insns", "The maximum instructions CSE process before flushing", 1000, 0, 0) |