diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-28 23:24:41 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-28 23:24:41 +0000 |
commit | 3276c83bdcc633a4dfd9ecb2c5ff19cb0527f6bf (patch) | |
tree | b25d116db892766e4a7456df5b0f900fccef4a11 /gcc/tree-ssa-alias.c | |
parent | d78f4c376b3c8279d24ef96c9d10011a6bf19641 (diff) | |
download | ppe42-gcc-3276c83bdcc633a4dfd9ecb2c5ff19cb0527f6bf.tar.gz ppe42-gcc-3276c83bdcc633a4dfd9ecb2c5ff19cb0527f6bf.zip |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89792 138bc75d-0d04-0410-961f-82ee72b054a4
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 9dab4c676ac..bedba4f109e 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; |