From: Marek Polacek Date: Tue, 9 Apr 2013 14:56:59 +0000 (+0000) Subject: re PR tree-optimization/48762 (valgrind: Invalid read/write of size 8 in cse_main... X-Git-Tag: releases/gcc-4.9.0~6590 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75ef8e3d2859687518d5f66619ec8fd2e70e00fb;p=thirdparty%2Fgcc.git re PR tree-optimization/48762 (valgrind: Invalid read/write of size 8 in cse_main with -O --param max-cse-path-length=0 on basic code) PR tree-optimization/48762 * params.def (PARAM_MAX_CSE_INSNS): Increase the minimum value to 1. From-SVN: r197637 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 42823116e046..f07d7696ef94 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2013-04-09 Marek Polacek + + PR tree-optimization/48762 + * params.def (PARAM_MAX_CSE_INSNS): Increase the minimum + value to 1. + 2013-04-09 Richard Biener * tree-vect-slp.c (vect_get_and_check_slp_defs): Remove code diff --git a/gcc/params.def b/gcc/params.def index 1af6481da5f6..10fd8fab39a3 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -451,7 +451,7 @@ DEFPARAM(PARAM_MAX_GOTO_DUPLICATION_INSNS, DEFPARAM(PARAM_MAX_CSE_PATH_LENGTH, "max-cse-path-length", "The maximum length of path considered in cse", - 10, 0, 0) + 10, 1, 0) DEFPARAM(PARAM_MAX_CSE_INSNS, "max-cse-insns", "The maximum instructions CSE process before flushing",