diff options
author | Diego Novillo <dnovillo@redhat.com> | 2004-10-28 23:24:41 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2004-10-28 19:24:41 -0400 |
commit | de66168d60454ab3cb39479bfe86a27254b679ea (patch) | |
tree | b25d116db892766e4a7456df5b0f900fccef4a11 /gcc/tree-ssa-alias.c | |
parent | 55dbfb488ebbd45e512648083e5fd700cde7389e (diff) | |
download | gcc-de66168d60454ab3cb39479bfe86a27254b679ea.zip gcc-de66168d60454ab3cb39479bfe86a27254b679ea.tar.gz gcc-de66168d60454ab3cb39479bfe86a27254b679ea.tar.bz2 |
re PR tree-optimization/16728 (std::set tests for allocator/insert core in make check-performance)
PR tree-optimization/16728
* tree-flow.h (get_ptr_info): Declare.
* tree-ssa-alias.c (get_ptr_info): Make extern.
* tree-ssa-copy.c (merge_alias_info): Merge flow-sensitive
alias information.
From-SVN: r89792
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r-- | gcc/tree-ssa-alias.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 9dab4c6..bedba4f 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -152,7 +152,6 @@ static void collect_points_to_info_for (struct alias_info *, tree); static bool ptr_is_dereferenced_by (tree, tree, bool *); static void maybe_create_global_var (struct alias_info *ai); static void group_aliases (struct alias_info *); -static struct ptr_info_def *get_ptr_info (tree t); static void set_pt_anything (tree ptr); static void set_pt_malloc (tree ptr); @@ -2262,7 +2261,7 @@ debug_alias_info (void) /* Return the alias information associated with pointer T. It creates a new instance if none existed. */ -static struct ptr_info_def * +struct ptr_info_def * get_ptr_info (tree t) { struct ptr_info_def *pi; |