diff options
author | Richard Guenther <rguenther@suse.de> | 2005-11-04 18:02:51 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2005-11-04 18:02:51 +0000 |
commit | 8d66aecaffd36ef82905a4b225ac5e0932231c9d (patch) | |
tree | b6f3557754fc7b55112b9e93cb62f67171fbea3b /gcc/tree-flow.h | |
parent | 086ed39d00cae8912691bfd0cecb61011a34f835 (diff) | |
download | gcc-8d66aecaffd36ef82905a4b225ac5e0932231c9d.zip gcc-8d66aecaffd36ef82905a4b225ac5e0932231c9d.tar.gz gcc-8d66aecaffd36ef82905a4b225ac5e0932231c9d.tar.bz2 |
tree-flow.h (ref_contains_indirect_ref): Rename to array_ref_contains_indirect_ref.
2005-11-04 Richard Guenther <rguenther@suse.de>
* tree-flow.h (ref_contains_indirect_ref): Rename to
array_ref_contains_indirect_ref.
* tree-flow-inline.h (ref_contains_indirect_ref): Likewise.
(array_ref_contains_indirect_ref): Make comment match the code
and vice-versa.
(ref_contains_array_ref): Likewise.
* tree-ssa-structalias.c (find_func_aliases): Remove call to
ref_contains_indirect_ref.
* tree-ssa-loop-niter.c (infer_loop_bounds_from_undefined):
Rename calls to ref_contains_indirect_ref.
From-SVN: r106499
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 135a4e8..389ec8f 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -614,7 +614,7 @@ extern void count_uses_and_derefs (tree, tree, unsigned *, unsigned *, bool *); static inline subvar_t get_subvars_for_var (tree); static inline tree get_subvar_at (tree, unsigned HOST_WIDE_INT); static inline bool ref_contains_array_ref (tree); -static inline bool ref_contains_indirect_ref (tree); +static inline bool array_ref_contains_indirect_ref (tree); extern tree okay_component_ref_for_subvars (tree, unsigned HOST_WIDE_INT *, unsigned HOST_WIDE_INT *); static inline bool var_can_have_subvars (tree); |