Commit 3a620661 by Richard Guenther Committed by Richard Biener

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
parent b56a5e1f
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.
2010-06-17 Richard Guenther <rguenther@suse.de>
......
......@@ -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. */
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment