diff options
author | Dorit Nuzman <dorit@il.ibm.com> | 2006-08-10 12:07:22 +0000 |
---|---|---|
committer | Dorit Nuzman <dorit@gcc.gnu.org> | 2006-08-10 12:07:22 +0000 |
commit | cc0968b01cb62e4f843bb0d3c16a62454b94a4c4 (patch) | |
tree | 48285f9f7c641d9cc4879127dc49ff7ea3d12d07 /gcc/tree-flow.h | |
parent | 22a8ed6556f9d57d93f43b60da5198136890f9c7 (diff) | |
download | gcc-cc0968b01cb62e4f843bb0d3c16a62454b94a4c4.zip gcc-cc0968b01cb62e4f843bb0d3c16a62454b94a4c4.tar.gz gcc-cc0968b01cb62e4f843bb0d3c16a62454b94a4c4.tar.bz2 |
re PR tree-optimization/26197 (ICE in is_old_name with vectorizer)
PR tree-optimization/26197
* tree-ssa-alias.c (new_type_alias): Takes additional argument. Calls
get_ref_base_and_extent and overlap_subvar to add only relevant
subvars as may-aliases.
(add_may_alias_for_new_tag): New function, factored out of
new_type_alias.
* tree-vect-transform.c (vect_create_data_ref_ptr): Call new_type_alias
with additional argument.
* tree-flow.h (new_type_alias): Takes additional argument.
From-SVN: r116060
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index d0c8151..4696666 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -667,7 +667,7 @@ extern void debug_points_to_info_for (tree); extern bool may_be_aliased (tree); extern bool is_aliased_with (tree, tree); extern struct ptr_info_def *get_ptr_info (tree); -extern void new_type_alias (tree, tree); +extern void new_type_alias (tree, tree, tree); extern void count_uses_and_derefs (tree, tree, unsigned *, unsigned *, bool *); static inline subvar_t get_subvars_for_var (tree); static inline tree get_subvar_at (tree, unsigned HOST_WIDE_INT); |