tree-flow-inline.h (array_ref_contains_indirect_ref): Remove.

2010-06-17  Richard Guenther  <rguenther@suse.de>

	* tree-flow-inline.h (array_ref_contains_indirect_ref): Remove.
	* tree-flow.h (array_ref_contains_indirect_ref): Likewise.

From-SVN: r160933
This commit is contained in:
Richard Guenther 2010-06-17 16:14:41 +00:00 committed by Richard Biener
parent b56a5e1fa3
commit 3a6206615e
3 changed files with 5 additions and 15 deletions

View file

@ -1,3 +1,8 @@
2010-06-17 Richard Guenther <rguenther@suse.de>
* tree-flow-inline.h (array_ref_contains_indirect_ref): Remove.
* tree-flow.h (array_ref_contains_indirect_ref): Likewise.
2010-06-17 Richard Guenther <rguenther@suse.de>
* tree-inline.c (declare_return_variable): Remove bogus code.

View file

@ -1113,20 +1113,6 @@ unmodifiable_var_p (const_tree var)
return TREE_READONLY (var) && (TREE_STATIC (var) || DECL_EXTERNAL (var));
}
/* Return true if REF, an ARRAY_REF, has an INDIRECT_REF somewhere in it. */
static inline bool
array_ref_contains_indirect_ref (const_tree ref)
{
gcc_checking_assert (TREE_CODE (ref) == ARRAY_REF);
do {
ref = TREE_OPERAND (ref, 0);
} while (handled_component_p (ref));
return TREE_CODE (ref) == INDIRECT_REF;
}
/* Return true if REF, a handled component reference, has an ARRAY_REF
somewhere in it. */

View file

@ -779,7 +779,6 @@ char *get_lsm_tmp_name (tree, unsigned);
static inline void set_is_used (tree);
static inline bool unmodifiable_var_p (const_tree);
static inline bool ref_contains_array_ref (const_tree);
static inline bool array_ref_contains_indirect_ref (const_tree);
/* In tree-eh.c */
extern void make_eh_edges (gimple);