aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-structalias.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-04-12 22:55:28 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-04-12 22:55:28 +0000
commitd96f49bf6479f8f61bb904bde6fcaabce69d1b15 (patch)
tree67e0521f1ea7b116a6b340efd5a11541bd856f35 /gcc/tree-ssa-structalias.h
parent86066f9bd4c6ea678e843eea7bad9a260d25e22a (diff)
downloadgcc-d96f49bf6479f8f61bb904bde6fcaabce69d1b15.zip
gcc-d96f49bf6479f8f61bb904bde6fcaabce69d1b15.tar.gz
gcc-d96f49bf6479f8f61bb904bde6fcaabce69d1b15.tar.bz2
tree-ssa-alias.c (set_initial_properties, [...]): Use VEC instead of VARRAY.
* tree-ssa-alias.c (set_initial_properties, init_alias_info, delete_alias_info, compute_flow_sensitive_aliasing, group_aliases): Use VEC instead of VARRAY. * tree-ssa-structalias.c (update_alias_info): Likewise. * tree-ssa-structalias.h (alias_info): Change the type of processed_ptrs to VEC(tree,heap) *. From-SVN: r112903
Diffstat (limited to 'gcc/tree-ssa-structalias.h')
-rw-r--r--gcc/tree-ssa-structalias.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-structalias.h b/gcc/tree-ssa-structalias.h
index bc129dd..008c015 100644
--- a/gcc/tree-ssa-structalias.h
+++ b/gcc/tree-ssa-structalias.h
@@ -34,7 +34,7 @@ struct alias_info
sbitmap ssa_names_visited;
/* Array of SSA_NAME pointers processed by the points-to collector. */
- varray_type processed_ptrs;
+ VEC(tree,heap) *processed_ptrs;
/* ADDRESSABLE_VARS contains all the global variables and locals that
have had their address taken. */