diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-26 15:15:28 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-26 15:15:28 +0000 |
commit | d400f5e165bbb0ce11bc4067f7d653a7bc08522e (patch) | |
tree | ed3cda18db90db3a4a3281d0e1ae3992e9f3f3a3 /gcc/alias.h | |
parent | f2a895863cc419a273c362325a59baa2198afb46 (diff) | |
download | gcc-d400f5e165bbb0ce11bc4067f7d653a7bc08522e.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@202948 138bc75d-0d04-0410-961f-82ee72b054a4
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 dd4b641ee8c..ff190eb094e 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); |