diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2005-09-15 17:21:48 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2005-09-15 17:21:48 +0000 |
commit | 14b33c04a1920fb97bde191021a509b439f3cf29 (patch) | |
tree | be7a77e576a00aa72443ccbc713c82a161c9c2f9 /gcc/tree-data-ref.h | |
parent | 312ea2368e81a4e198a3e414464413d1c5334038 (diff) | |
download | gcc-14b33c04a1920fb97bde191021a509b439f3cf29.zip gcc-14b33c04a1920fb97bde191021a509b439f3cf29.tar.gz gcc-14b33c04a1920fb97bde191021a509b439f3cf29.tar.bz2 |
tree-data-ref.c (analyze_array_indexes): Add estimate_only parameter.
2005-09-15 Daniel Berlin <dberlin@dberlin.org>
* tree-data-ref.c (analyze_array_indexes): Add estimate_only
parameter.
Update callers.
(estimate_iters_using_array): New function.
* tree-data-ref.h (estimate_iters_using_array): Prototype
* tree-ssa-loop-niter.c (infer_loop_bounds_from_undefined):
Use estimate_iters_using_array instead of analyze_array.
From-SVN: r104312
Diffstat (limited to 'gcc/tree-data-ref.h')
-rw-r--r-- | gcc/tree-data-ref.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-data-ref.h b/gcc/tree-data-ref.h index f845fcd..0677db5 100644 --- a/gcc/tree-data-ref.h +++ b/gcc/tree-data-ref.h @@ -265,6 +265,7 @@ extern void free_dependence_relations (varray_type); extern void free_data_refs (varray_type); extern void compute_subscript_distance (struct data_dependence_relation *); extern struct data_reference *analyze_array (tree, tree, bool); +extern void estimate_iters_using_array (tree, tree); |