diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-15 17:21:48 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-15 17:21:48 +0000 |
commit | 2e667208ae346457eb476e12776ae238e120c8cd (patch) | |
tree | be7a77e576a00aa72443ccbc713c82a161c9c2f9 /gcc/tree-data-ref.h | |
parent | f629cc666d0fa681fb95476b18fdb9c3a15d30e2 (diff) | |
download | gcc-2e667208ae346457eb476e12776ae238e120c8cd.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104312 138bc75d-0d04-0410-961f-82ee72b054a4
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 f845fcd4dcf..0677db5251c 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); |