diff options
author | Ira Rosen <irar@il.ibm.com> | 2007-09-12 05:05:04 +0000 |
---|---|---|
committer | Ira Rosen <irar@gcc.gnu.org> | 2007-09-12 05:05:04 +0000 |
commit | 8d888559bbdd85403d3b8d2a2885d75aacc8b8af (patch) | |
tree | f78a0970b71522ab3aefb07ee2e921187d308c8f /gcc | |
parent | 9f349f630ed99521089fcd06d7c4b5628b2b9ed5 (diff) | |
download | gcc-8d888559bbdd85403d3b8d2a2885d75aacc8b8af.zip gcc-8d888559bbdd85403d3b8d2a2885d75aacc8b8af.tar.gz gcc-8d888559bbdd85403d3b8d2a2885d75aacc8b8af.tar.bz2 |
params.def (PARAM_MIN_VECT_LOOP_BOUND): Change default and minimum to 1.
* params.def (PARAM_MIN_VECT_LOOP_BOUND): Change default and minimum
to 1.
From-SVN: r128411
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/params.def | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1d83d9d..2a045d1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-09-12 Ira Rosen <irar@il.ibm.com> + + * params.def (PARAM_MIN_VECT_LOOP_BOUND): Change default and minimum + to 1. + 2007-09-11 James E. Wilson <wilson@specifix.com> * defaults.h (DWARF2_UNWIND_INFO): Don't define if diff --git a/gcc/params.def b/gcc/params.def index fcc1689..2ad1eb6 100644 --- a/gcc/params.def +++ b/gcc/params.def @@ -148,7 +148,7 @@ DEFPARAM (PARAM_MAX_VARIABLE_EXPANSIONS, DEFPARAM (PARAM_MIN_VECT_LOOP_BOUND, "min-vect-loop-bound", "If -ftree-vectorize is used, the minimal loop bound of a loop to be considered for vectorization", - 0, 0, 0) + 1, 1, 0) /* The maximum number of instructions to consider when looking for an instruction to fill a delay slot. If more than this arbitrary |