summaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-structalias.h
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-12 22:55:28 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2006-04-12 22:55:28 +0000
commit4857cd31f9bdcb0f8104aec7376e56c440285e01 (patch)
tree67e0521f1ea7b116a6b340efd5a11541bd856f35 /gcc/tree-ssa-structalias.h
parent5adc6320da0dbef66f4590d033dcc9924748eca0 (diff)
downloadgcc-4857cd31f9bdcb0f8104aec7376e56c440285e01.tar.gz
* 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) *. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112903 138bc75d-0d04-0410-961f-82ee72b054a4
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 bc129dde134..008c0156b87 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. */