diff options
author | Zdenek Dvorak <dvorakz@suse.cz> | 2005-12-19 20:13:21 +0100 |
---|---|---|
committer | Zdenek Dvorak <rakdver@gcc.gnu.org> | 2005-12-19 19:13:21 +0000 |
commit | 780e37d3707df53431bda25acc03a29dd9ae9a0b (patch) | |
tree | 0c8732c81e7c0d6f68cff04366bf2a4b0314e4d3 /gcc/tree-flow.h | |
parent | b214e1e755e5cf41850818e8b214f5985c3209b4 (diff) | |
download | gcc-780e37d3707df53431bda25acc03a29dd9ae9a0b.zip gcc-780e37d3707df53431bda25acc03a29dd9ae9a0b.tar.gz gcc-780e37d3707df53431bda25acc03a29dd9ae9a0b.tar.bz2 |
tree-flow.h (struct var_ann_d): Change type of may_aliases field to VEC(tree, gc) *.
* tree-flow.h (struct var_ann_d): Change type of
may_aliases field to VEC(tree, gc) *.
(may_aliases): Declaration changed.
* tree-ssa-alias.c (group_aliases, add_may_alias,
replace_may_alias, dump_may_aliases_for,
is_aliased_with, add_type_alias, new_type_alias):
Work with VEC(tree, gc) * instead of varray.
* tree-flow-inline.h (may_aliases): Ditto.
* tree-ssa.c (verify_flow_insensitive_alias_info,
verify_name_tags): Ditto.
* tree-ssa-operands.c (add_stmt_operand): Ditto.
From-SVN: r108804
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 9675288..e59e809 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -196,7 +196,7 @@ struct var_ann_d GTY(()) tree type_mem_tag; /* Variables that may alias this variable. */ - varray_type may_aliases; + VEC(tree, gc) *may_aliases; /* Used when going out of SSA form to indicate which partition this variable represents storage for. */ @@ -309,7 +309,7 @@ extern void set_bb_for_stmt (tree, basic_block); static inline bool noreturn_call_p (tree); static inline void update_stmt (tree); static inline bool stmt_modified_p (tree); -static inline varray_type may_aliases (tree); +static inline VEC(tree, gc) *may_aliases (tree); static inline int get_lineno (tree); static inline const char *get_filename (tree); static inline bool is_exec_stmt (tree); |