diff options
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index c49faee..19efacd 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -266,11 +266,6 @@ struct var_ann_d GTY(()) to convert to hash table? */ tree symbol_mem_tag; - /* Variables that may alias this variable. This may only be set on - memory tags (NAME_MEMORY_TAG or TYPE_MEMORY_TAG). FIXME, move to - struct tree_memory_tag. */ - VEC(tree, gc) *may_aliases; - /* Used when going out of SSA form to indicate which partition this variable represents storage for. */ unsigned partition; @@ -431,7 +426,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 VEC(tree, gc) *may_aliases (tree); +static inline bitmap may_aliases (tree); static inline int get_lineno (tree); static inline const char *get_filename (tree); static inline bool is_exec_stmt (tree); |