summaryrefslogtreecommitdiff
path: root/gcc/alias.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-12-03 16:20:31 -0800
committerRichard Henderson <rth@gcc.gnu.org>2004-12-03 16:20:31 -0800
commit2039d7aaea51db1bcfabe7b8f7b3fda6f198f605 (patch)
treec955f6935acd1dde2f9a2c0e759835c083b1cd04 /gcc/alias.h
parent1b68ae543cfdc2819d365dc59c759e67e34ff4a3 (diff)
alias.c (component_uses_parent_alias_set): Rename from can_address_p.
* alias.c (component_uses_parent_alias_set): Rename from can_address_p. Return bool. Reverse the sense of the result. Reinstate the check for alias set zero. (get_alias_set): Update to match. * alias.h (component_uses_parent_alias_set): Likewise. * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise. * expr.c (expand_assignment): Likewise. * expr.h: Remove commented out prototypes that were moved to alias.h. From-SVN: r91712
Diffstat (limited to 'gcc/alias.h')
-rw-r--r--gcc/alias.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/alias.h b/gcc/alias.h
index ea78e808a62..58fe0bd17d4 100644
--- a/gcc/alias.h
+++ b/gcc/alias.h
@@ -25,6 +25,6 @@ extern HOST_WIDE_INT new_alias_set (void);
extern HOST_WIDE_INT get_varargs_alias_set (void);
extern HOST_WIDE_INT get_frame_alias_set (void);
extern void record_base_value (unsigned int, rtx, int);
-extern int can_address_p (tree);
+extern bool component_uses_parent_alias_set (tree);
#endif /* GCC_ALIAS_H */