aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-flow-inline.h14
-rw-r--r--gcc/tree-flow.h1
3 files changed, 5 insertions, 15 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ca6224e..79e47f5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
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>
diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h
index b1e1251..7e93537 100644
--- a/gcc/tree-flow-inline.h
+++ b/gcc/tree-flow-inline.h
@@ -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. */
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index 1830ffa..3dd9244 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -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);