diff options
| -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) |
