diff options
author | Richard Biener <rguenther@suse.de> | 2013-09-26 15:15:28 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2013-09-26 15:15:28 +0000 |
commit | b4ada065443ec39feeca2fe034ea78401edd0a1f (patch) | |
tree | ed3cda18db90db3a4a3281d0e1ae3992e9f3f3a3 /gcc/alias.h | |
parent | 1aab66787a9ade8446be9324f10575738627c6eb (diff) | |
download | gcc-b4ada065443ec39feeca2fe034ea78401edd0a1f.zip gcc-b4ada065443ec39feeca2fe034ea78401edd0a1f.tar.gz gcc-b4ada065443ec39feeca2fe034ea78401edd0a1f.tar.bz2 |
alias.h (component_uses_parent_alias_set): Rename to ...
2013-09-26 Richard Biener <rguenther@suse.de>
* alias.h (component_uses_parent_alias_set): Rename to ...
(component_uses_parent_alias_set_from): ... this.
* alias.c (component_uses_parent_alias_set): Rename to ...
(component_uses_parent_alias_set_from): ... this and return
the desired parent.
(reference_alias_ptr_type_1): Use the result from
component_uses_parent_alias_set_from instead of stripping
components one at a time.
* emit-rtl.c (set_mem_attributes_minus_bitpos): Adjust.
From-SVN: r202948
Diffstat (limited to 'gcc/alias.h')
-rw-r--r-- | gcc/alias.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/alias.h b/gcc/alias.h index dd4b641..ff190eb 100644 --- a/gcc/alias.h +++ b/gcc/alias.h @@ -33,7 +33,7 @@ extern alias_set_type get_alias_set (tree); extern alias_set_type get_deref_alias_set (tree); extern alias_set_type get_varargs_alias_set (void); extern alias_set_type get_frame_alias_set (void); -extern bool component_uses_parent_alias_set (const_tree); +extern tree component_uses_parent_alias_set_from (const_tree); extern bool alias_set_subset_of (alias_set_type, alias_set_type); extern void record_alias_subset (alias_set_type, alias_set_type); extern void record_component_aliases (tree); |